1
當我對複選框進行了樣式設置時,標籤位於複選框的頂部。但我希望它分開。然而,由於我使用的CSS,我覺得非常棘手,因爲複選框和標籤共享和高度。有人可以建議如何操縱這個標籤?如何重新定位位於複選框頂部的標籤
CSS
input[type=checkbox] {
display:none;
}
input[type=checkbox] + label
{
background: #D9D9D9;
height: 40px;
width: 40px;
border-radius:20px;
display:inline-block;
padding: 0 0 0 0px;
cursor:pointer;
border:1px solid #00AAFF;
}
input[type=checkbox]:checked + label
{
background: #00B0F0;
height: 40px;
width: 40px;
border-radius:20px;
display:inline-block;
padding: 0 0 0 0px;
cursor:pointer;
}
這裏的小提琴:http://jsfiddle.net/vxbbfyr0/
u能張貼小提琴 –
@KarthikN,在這裏:http://jsfiddle.net/vxbbfyr0/ – sherly
[如何使用CSS設置複選框?](http://stackoverflow.com/questions/4148499/how-to-style-checkb OX-使用-CSS) – BSMP