css去掉select箭頭的方法:先建立一個HTML範例檔案;然後透過select標籤建立單選或多選選單;最後透過「appearance:none;」等屬性將預設的select選擇框樣式清除即可。
本文操作環境:windows7系統、HTML5&&CSS3版、Dell G3電腦。
css清除select的下拉箭頭樣式
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> select::-ms-expand { display: none; } .info-select{ width: 88px; height: 25px; border: none; outline: none; /*将默认的select选择框样式清除*/ appearance:none; -moz-appearance:none; -webkit-appearance:none; -ms-appearance:none; /*在选择框的最右侧中间显示小箭头图片*/ background: url(img/sele.png) no-repeat scroll right center transparent; /***将sele.png替换为你的下拉箭头**/ } </style> </head> <body> <select class="info-select"> <option selected="selected">1</option> <option>2</option> </select> </body> </html>
【推薦學習:css影片教學】
本例可以更換selet下拉箭頭,只適用於非ie瀏覽器,ie樣式為預設樣式
以上是css怎麼去掉select箭頭的詳細內容。更多資訊請關注PHP中文網其他相關文章!