移除HTML5 input在type="number"時的上下小箭頭

Chromecss

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

FireFoxhtml

input[type='number'] {
    -moz-appearance:textfield;
}

參考:https://stackoverflow.com/questions/3790935/can-i-hide-the-html5-number-input-s-spin-boxhtml5

相關文章
相關標籤/搜索