您好朋友我想要做的就是更改复选框的背景颜色.我累了很多东西,但没有任何作用.有人可以帮忙吗?
input[type="checkbox"] {
background: #3d404e;
border: #7f83a2 1px solid;
}
Run Code Online (Sandbox Code Playgroud) 如何只使用CSS在IE 8及更低版本中旋转90度?
.horizontal {
display: block;
width: 300px;
height: 100px;/*height*/
background: #FF0000;
margin: auto;
margin-top: 110px;
text-align: center;
border: 5px solid #000000;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
}
Run Code Online (Sandbox Code Playgroud)