您现在的位置:首页 >> 前端 >> 内容

checkbox样式改写

时间:2018/7/5 15:09:12 点击:

  核心提示:p class=checkbox font_slabelinput type=checkbox 设备状态/label/p.checkbox input[type=checkbox] {-webkit-...
<p class="checkbox font_s">
    <label>
        <input type="checkbox"> 设备状态
    </label>
</p>

.checkbox input[type="checkbox"] {
    -webkit-appearance: none;  /*清除复选框默认样式*/
    background: #fff url("../images/unchecked.png") no-repeat;   /*复选框的背景图,就是上图*/
    width: 15px;
    height: 15px;
    vertical-align: middle;
    outline: none; /*去掉自带的边框*/
}
.checkbox  input[type="checkbox"]:checked {
    -webkit-appearance: none;  /*清除复选框默认样式*/
    background: url("../images/checked.png") no-repeat;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    outline: none;
}

 

Tags:CH HE EC CK 
作者:网络 来源:小牛牛的博客
  • 上一篇:初识HTML
  • 下一篇:javascript详细介绍