首頁 >web前端 >css教學 >如何利用純CSS改變html? radio/checkbox預設背景顏色樣式

如何利用純CSS改變html? radio/checkbox預設背景顏色樣式

云罗郡主
云罗郡主轉載
2018-10-11 14:40:055243瀏覽

本篇文章帶給大家的內容是關於如何利用純CSS改變html? radio/checkbox預設背景顏色樣式,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

如何利用純CSS改變html? radio/checkbox預設背景顏色樣式

CSS程式碼:

input[type=checkbox] {
  margin-right: 5px;
  cursor: pointer;
  font-size: 14px;
  width: 15px;
  height: 12px;
  position: relative;
}
input[type=checkbox]:after {
  position: absolute;
  width: 10px;
  height: 15px;
  top: 0;
  content: " ";
  background-color: #ff0000;
  color: #fff;
  display: inline-block;
  visibility: visible;
  padding: 0px 3px;
  border-radius: 3px;
}
input[type=checkbox]:checked:after {
  content: "✓";
  font-size: 12px;
}
input[type=radio] {
    margin-right: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 15px;
    height: 12px;
    position: relative;
}
input[type=radio]:after {
    position: absolute;
    width: 10px;
    height: 15px;
    top: 0;
    content: " ";
    background-color: #ff0000;
    color: #fff;
    display: inline-block;
    visibility: visible;
    padding: 0px 3px;
    border-radius: 50%;
}
input[type=radio]:checked:before {
    content: "✓";
    display: block;
    position: relative;
    top: -2px;
    left: 3px;
    width: 6px;
    height: 6px;
    color: #fff;
    font-weight: 400;
    z-index: 1;
}

HTML 範例:

<input type="checkbox" name="method" value="plus" checked>plus<br>
<input type="checkbox" name="method" value="minus">minus<br>
<input type="radio" name="method" value="plus">plus<br>
<input type="radio" name="method" value="minus" checked>minus<br>

以上就是對如何利用純CSS改變html? radio/checkbox預設背景顏色樣式的完整介紹,如果您想了解更多有關CSS3影片教學,請關注PHP中文網。

以上是如何利用純CSS改變html? radio/checkbox預設背景顏色樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:qdfuns.com。如有侵權,請聯絡admin@php.cn刪除