css input樣式修改的方法:1.利用偽類元素改變radio樣式;2、利用label指向input,然後透過改變label樣式來達到效果即可。
本文操作環境: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中文網其他相關文章!