1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

input type="number" の矢印消す

Posted at

image.png
input type="number"を使用すると、デフォルトで矢印がついていますね。
「スピンボタン」と呼ぶそうですが今回は不要のため消してしまいます!


CSSに以下を書いてブラウザのデフォルトスタイルを上書きしていきます。


Chrome、Safariの場合

input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
} 

FireFox, IE

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

Chrome, Safari, FireFox, IE まとめて書く

.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance:textfield !important;
}

image.png
無事消えました!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?