把以下代码添加到css样式里即可修改checkbo样式:
[css] view plain copy
input[type=radio],input[type=checkbox] {
display: inline-block;
vertical-align: middle;
width: 20px;
height: 20px;
margin-left: 5px;
-webkit-appearance: none;
background-color: transparent;
border: 0;
outline: 0 !important;
line-height: 20px;
color: #d8d8d8;
}
input[type=radio]:after {
content: "";
display:block;
width: 20px;
height: 20px;
border-radius: 50%;
text-align: center;
line-height: 14px;
font-size: 16px;
color: #fff;
border: 2px solid #ddd;
background-color: #fff;
box-sizing:border-box;
}
input[type=checkbox]:after {
content: "";
display:block;
width: 20px;
height: 20px;
text-align: center;
line-height: 14px;
font-size: 16px;
color: #fff;
border: 2px solid #ddd;
background-color: #fff;
box-sizing:border-box;
}
input[type=checkbox]:checked:after {
border: 4px solid #ddd;
background-color: #37AF6E;
}
input[type=radio]:checked:after {
content: "L";
transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);
-webkit-transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);
border-color: #37AF6E;
background-color: #37AF6E;
}
Html5标签:
定义注释。
定义文档类型。
定义缩写。
定义只取首字母的缩写。
定义图像映射内部的区域。
定义粗体字。
定义文本的文本方向,使其脱离其周围文本的方向设置。
定义文字方向。
定义大号文本。
定义长的引用。
定义简单的折行。
定义引用(citation)。
定义计算机代码文本。