LoginSignup
69
60

More than 5 years have passed since last update.

<input type="number">のスピンボタン(右のボタン)を消す方法

Last updated at Posted at 2015-12-11

この右にあるボタンです。これを削除する方法。
SideButton_Spin.png

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;
}
69
60
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
69
60