//有效表单控件都成小麦色
form :enabled{background-color: wheat;} //选择项的兄弟项变成红色 form :checked +*{color:red;} //获得焦点的表单的控件背景成亮蓝色 form :focus{ background-color: lightblue; } //鼠标过按钮变大,背景色变黑,字体色变白 button:hover{width:50px;height:50px; background-color: black;color:white;}
点击 "运行实例" 按钮查看在线实例