1、select 2、input ...
input 默認 padding: px px border style: inset border width: px box sizing:content box 若是button submit box sizing:border box 其他 display: inline block webkit appearance: textfield background color: cursor ...
2020-07-09 16:47 0 609 推薦指數:
1、select 2、input ...
在做頁面的時候發現,給 select 加樣式的時候 而我想要的是 ios 是有自己的默認樣式的。 通過查資料知道 雖然還不是很完美,但是小箭頭可以通過背景圖片來搞。 但是沒有加之前 在微信開發者工具中是正常的, 安卓也是正常的。 ...
寫這個頁面只是為了記錄各個瀏覽器修改input type="range" 默認樣式的方法,有需要的朋友們可以參考下。 注:在chrome瀏覽器中進度條不顯示顏色,需要自己設置。 <!DOCTYPE html> <html lang="en"> ...
隱藏input等表單的默認樣式的背景: textarea,select,input{-webkit-appearance: none; -moz-appearance: none; -o-appearance: none; appearance: none;} 讓div看起來像按鈕 ...
input:focus{ outline: none; border: 1px solid #fff; } 或者 input[type=text]:focus{ outline: none; border: 1px solid #fff; } ...
效果: 代碼: <style> .inputBox { width: 100px; height: 50px; ba ...