首頁  >  文章  >  web前端  >  css input樣式怎麼修改

css input樣式怎麼修改

藏色散人
藏色散人原創
2021-04-19 09:28:417359瀏覽

css input樣式修改的方法:1.利用偽類元素改變radio樣式;2、利用label指向input,然後透過改變label樣式來達到效果即可。

css input樣式怎麼修改

本文操作環境:Windows7系統、Dell G3電腦、HTML5&&CSS3版。

css改變input框樣式

目前部落客只知道兩種方法,如果有同學有別的方法歡迎進行討論

  

一:利用偽類元素改變radio樣式(此方法無需添加額外的標籤,更方便)

 .div input[type=radio]::after {
    position: absolute;
    width: 25px;
    height: 25px;
    background: url(../img/inputBG.jpg) no-repeat;
    background-size: 100% 100%;
  }

二:利用label指向input,透過改變label樣式來達到效果   

 <html>  
    <input type="checkbox" checked="checked" id="aa"/><label for="aa"></label>
  </html>
  <style>
    input[type=checkbox]{
       visibility: hidden;
    }
    label{
      width:20px;
      height:20px;
      border:1px solid #707070;
    }
    input[type=checkbox]:checked + label{
      background: url(../img/duigou.jpg)no-repeat;
      background-size: 100% 100%;
    }
  </style>

【建議學習:css影片教學

以上是css input樣式怎麼修改的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn