input能改變css樣式嗎

藏色散人
發布: 2023-01-04 09:38:17
原創
1872 人瀏覽過

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

input能改變css樣式嗎

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

推薦:《css影片教學

改變input框預設css樣式的方法:

input能改變css樣式嗎

一:利用偽類元素改變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>
登入後複製

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

相關標籤:
css
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板