码迷,mamicode.com
首页 > 其他好文 > 详细

自定义radio/checkbox样式

时间:2018-07-02 20:23:52      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:选中   NPU   htm   back   family   spl   set   pre   padding   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>自定义radio/checkbox样式</title>
<style>
*{
    padding: 0;
    margin: 0;
}
input[type=checkbox]{
    display: none;
}
/*未选中样式*/
.checkbox{
    color: green;
}
/*选中样式((可以设置背景图片等)*/
input[type=checkbox]:checked + .checkbox{
    color: red;
}
</style>
</head>

<body>
   <label>
       <input type="checkbox" name="" id="" value="" />
       <span class="checkbox">是否选择</span>
   </label>
</body>

</html>

 

自定义radio/checkbox样式

标签:选中   NPU   htm   back   family   spl   set   pre   padding   

原文地址:https://www.cnblogs.com/mengfangui/p/9255412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!