文章出處
文章列表
原理是通過定位把以前的樣式覆蓋掉,就醬...
代碼如下:
css .checkbox { position: relative; padding-left: 8px; } .checkbox:before{ content: ''; display: inline-block; width: 16px; height: 16px; border: 2px solid #999; border-radius: 50%; background: #fff; position: absolute; } input[type=checkbox]:checked:before{ content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 100%; background: #999; position: absolute; top: 5px; left: 13px; } input[type=checkbox]{ margin-right: 6px; }
html <p>改變單選或者復選框的樣式 <label class="checkbox"><input name="1" type="checkbox">11</label> <label class="checkbox"><input name="1" type="checkbox" >22</label> </p>
文章列表
全站熱搜