码迷,mamicode.com
首页 > Web开发 > 详细

css - 表单元素默认样式美化 - 单选框

时间:2018-08-11 17:14:45      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:pos   技术   src   abs   bubuko   image   表单元素   inf   设置   

单选框

HTML代码

技术分享图片

 

样式

技术分享图片

.radio input{
visibility: hidden;
}
.radio label{
position: relative;
}
.radio label:after{
content: "";/*必须设置*/
display: inline-block;
width: 20px;
height: 20px;
border: 1px solid #5dbd5d;
position: absolute;
top: 0px;
left: -32px;
border-radius: 20px;
}

.radio input:checked+label:after{
background-color: #5dbd5d;
}

效果:

技术分享图片

或者使用背景图片

 

css - 表单元素默认样式美化 - 单选框

标签:pos   技术   src   abs   bubuko   image   表单元素   inf   设置   

原文地址:https://www.cnblogs.com/starnoone/p/9460271.html

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