文章出處

原理是通過定位把以前的樣式覆蓋掉,就醬...

代碼如下:

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>

 


文章列表


不含病毒。www.avast.com
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()