我有以下的單選按鈕,我需要更大的圓圈是38px用CSS 3花哨的單選按鈕對齊標籤
input[type=radio] {
visibility: hidden;
}
.label {
font-weight: normal;
color: #333;
}
.label::before {
content: '';
position: absolute;
left: 0;
width: 38px;
height: 38px;
border: 1px solid #727272;
border-radius: 50%;
}
input[type=radio]:checked+label:after {
content: '';
position: absolute;
width: 38px;
height: 38px;
left: 0;
background: #0065bd;
border: none;
transform: scale(0.5);
border-radius: 50%;
}
<div class="container">
<input type="radio" id="radio1" value="on">
<label for="radio1" class="label">Yes</label>
</div>
這裏是一個fiddle,我該如何調整標籤所以它與中心對齊並推到了圓圈的右側?
如果這些答案的人幫助解決您的問題請標明一個所接受,這樣其他人同樣的問題,知道哪個答案是正確的! :) –