<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<style>
input[type="radio"] {
width: 20px;
height: 20px;
opacity: 0;
}
input[type="radio"] + label::before {
display: inline-block;
width: 16px;
height: 16px;
border-radius: 50%;
margin-right: 10px;
vertical-align: text-bottom;
border: 1px solid #d9d9d9;
-webkit-box-sizing: border-box;
box-sizing: border-box;
content: "";
}
input[type="radio"]:checked + label::before {
background-color: white;
background-clip: content-box;
border-color: #79a0ff;
border-width: 5px;
}
</style>
<body>
<div>
<input class="doRadio doRadioFirst" id="carMatch" type="radio" name="attributes" value="汽配">
<label for="carMatch">汽配</label>
<input class="doRadio" type="radio" id="carRepair" name="attributes" value="汽修">
<label for="carRepair">汽修</label>
<input class="doRadio" type="radio" id="other" name="attributes" value="其他">
<label for="other">其他</label>
</div>
</body>
</html>
关于radio样式的设置
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在我们html文件中,引入了2个css文件,分别为reset.css和login.css。下面我们就来看一下这2个...