css如何改變預設的radio和checkbox的樣式

來源:互聯網
上載者:User
本篇文章給大家分享的是關於css如何改變預設的radio和checkbox的樣式 ,內容很不錯,有需要的朋友可以參考一下,希望可以協助到大家。

利用css的label的偽類(::before)代替checkbox和radio效果:

  1. 優點:需要圖片來調整選中前和選中後的樣式,純css搞定

  2. 缺點:相容性,IE8以下不支援

代碼:

<!DOCTYPE html><html><head>  <meta charset="UTF-8">  <meta http-equiv="X-UA-Compatible" content="ie=edge">  <title>css改變預設的radio和checkbox的樣式</title>  <style>    input[type="radio"],    input[type='checkbox'] {      display: none;    }    input[type='radio']+label::before,    input[type='checkbox']+label::before {      content: '';      display: inline-block;      width: 15px;      height: 15px;      margin-right: 6px;      border-radius: 100%;      vertical-align: middle;      border: 1px solid #E4E4E4;      background: #FFFFFF;      background-image: url('https://i.loli.net/2018/07/20/5b517d0bf066a.png');      background-position: 0px 0px;    }    input[type='radio']:hover+label::before,    input[type='checkbox']:hover+label::before {      background-position: -15px 0px;    }    input[type='radio']:checked+label::before,    input[type='checkbox']:checked+label::before {      background-position: -15px -15px;    }  </style></head><body>  <p>單選框</p>  <input type="radio" name="sex" value="man" id="man" checked>  <label for="man">男</label>  <input type="radio" name="sex" value="female" id="female">  <label for="female">女</label>  <p>多選框</p>  <input type="checkbox" name="fruits" value="apple" id="apple" checked>  <label for="apple">蘋果</label>  <input type="checkbox" name="fruits" value="orange" id="orange">  <label for="orange">橙子</label></body></html>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.