は私が、私はラベルを揃えることができる方法、38px合わせラベルが
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であることを大きな円を次のラジオボタンを必要としていますそれは中心に整列され、円の右側にプッシュされますか?
これらの答えの一つは、あなたの問題を解決する助けた場合受け入れと同じ質問を持つので、他の人が正しいとする答えを知っているものをマークしてください! :) –