首页 > Web开发 > 详细

[CSS3] Define Form Element States with CSS Form Pseudo Classes

时间:2018-12-05 01:38:24      阅读:189      评论:0      收藏:0      [点我收藏+]

Using just semantic CSS Pseudo-Classes you can help define important states for form elements that ensure the user provides the correct data without frustration.

 
input:focus {
  outline: none;
  box-shadow: 3px 3px 1px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.5);
}
fieldset:disabled { /* :enabled opposite */
  opacity: 0.5;
}
input:checked + label {
  font-style: italic;
}
input:invalid {
  border-color: red;
}
input:valid {
  border-color: green;
}
input:required {
  border-width: 2px;
}

 

[CSS3] Define Form Element States with CSS Form Pseudo Classes

原文:https://www.cnblogs.com/Answer1215/p/10068191.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!