利用純CSS自訂Checkbox和Radio的樣式範例程式碼

來源:互聯網
上載者:User
大家應該都知道Checkbox和Radio這兩個控制項比較特殊,因為它在不同平台的擁有不同的展示。所以這篇文章就來給大家介紹如何利用CSS3的一些屬性來實現自訂checkbox和radio樣式,有需要的朋友們可以參考借鑒,下面來一起看看吧。

首先看看不同平台的checkbox & radio

我們可以利用CSS3的一些屬性來實現自訂checkbox & radio樣式。

HTML 程式碼


// radio input<p class="radio">    <input id="male" type="radio" name="gender" value="male">    <label for="male">Male</label>    <input id="female" type="radio" name="gender" value="female">    <label for="female">Female</label></p>// checkbox input<p class="checkbox">    <input id="check1" type="checkbox" name="check" value="check1">    <label for="check1">Checkbox No. 1</label>    <input id="check2" type="checkbox" name="check" value="check2">    <label for="check2">Checkbox No. 2</label></p>

CSS 代碼


label {    display: inline-block;    cursor: pointer;    position: relative;    padding-left: 25px;    margin-right: 15px;    font-size: 13px;}label:before {    content: "";    display: inline-block;    width: 16px;    height: 16px;    margin-right: 10px;    position: absolute;    left: 0;    bottom: 1px;    background-color: #aaa;    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);}.radio label:before {    border-radius: 8px;}.checkbox label:before {    border-radius: 3px;}input[type=radio],input[type=checkbox] {    display: none;}input[type=radio]:checked + label:before {    content: "\2022";    color: #f3f3f3;    font-size: 30px;    text-align: center;    line-height: 18px;}input[type=checkbox]:checked + label:before {    content: "\2713";    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);    font-size: 15px;    color: #f3f3f3;    text-align: center;    line-height: 15px;}

相容性

:checked在IE8相容性不理想

box-shadow在IE8不相容,不過box-shadow對於自訂樣式可有可無

:after :before在IE8不相容雙冒號寫法

:checked屬性相容性

box-shadow屬性相容性

:before :after屬性相容性

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.