用纯css改变默认的radio和checkbox的样式
程序员文章站
2022-04-15 16:28:12
利用css的label的伪类(::before)代替checkbox和radio效果: 1. 优点:需要图片来调整选中前和选中后的样式,纯css搞定 2. 缺点:兼容性,IE8以下不支持 在线例子: css改变默认的radio和checkbox的样式 input[type="radio"], inp ......
利用css的label的伪类(::before)代替checkbox和radio效果:
优点:需要图片来调整选中前和选中后的样式,纯css搞定
缺点:兼容性,IE8以下不支持
在线例子:
单选框
多选框
代码:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>css改变默认的radio和checkbox的样式</title> <style> input[type="radio"], input[type='checkbox'] { display: none; } input[type='radio']+label::before, input[type='checkbox']+label::before { content: ''; display: inline-block; width: 15px; height: 15px; margin-right: 6px; border-radius: 100%; vertical-align: middle; border: 1px solid #E4E4E4; background: #FFFFFF; background-image: url('https://i.loli.net/2018/07/20/5b517d0bf066a.png'); background-position: 0px 0px; } input[type='radio']:hover+label::before, input[type='checkbox']:hover+label::before { background-position: -15px 0px; } input[type='radio']:checked+label::before, input[type='checkbox']:checked+label::before { background-position: -15px -15px; } </style> </head> <body> <p>单选框</p> <input type="radio" name="sex" value="man" id="man" checked> <label for="man">男</label> <input type="radio" name="sex" value="female" id="female"> <label for="female">女</label> <p>多选框</p> <input type="checkbox" name="fruits" value="apple" id="apple" checked> <label for="apple">苹果</label> <input type="checkbox" name="fruits" value="orange" id="orange"> <label for="orange">橙子</label> </body> </html>
上一篇: 用PS制作漂亮的毛绒绒小球
下一篇: tmp
推荐阅读
-
纯css3实现效果超级炫的checkbox复选框和radio单选框
-
用纯css改变默认的radio和checkbox的样式
-
一款纯css3实现简单的checkbox复选框和radio单选框
-
用纯css改变下拉列表select框的默认样式_html/css_WEB-ITnose
-
怎样用纯HTML和CSS更改默认的上传文件按钮样式_html/css_WEB-ITnose
-
用纯css改变下拉列表select框的默认样式 - dehua.Chen
-
用纯css改变下拉列表select框的默认样式_html/css_WEB-ITnose
-
怎样用纯HTML和CSS更改默认的上传文件按钮样式_html/css_WEB-ITnose
-
怎样用纯html和css更改默认的上传文件按钮样式
-
纯css3实现效果超级炫的checkbox复选框和radio单选框