Web/CSS/ -webkit-outer-spin-button

From Get docs

Non-standard This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.


The ::-webkit-outer-spin-button CSS pseudo-element is used to style the outer part of the spinner button of number picker <input> elements.

Syntax

::-webkit-outer-spin-button

Examples

These examples only works on browsers based on WebKit or Blink.


Hiding the spinner

This example uses input::-webkit-outer-spin-button to find <input> elements' spinner widgets and set their -webkit-appearance to none, thus hiding them.

HTML

<input type="number">

CSS

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

Result

Specifications

Not part of any standard.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

::-webkit-outer-spin-button

Non-standard'

Chrome

No support 6 — 13

Edge

No support No

Firefox

No support No

IE

No support No

Opera

No support No

Safari

No support 5 — 5.1

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support No

Opera Android

No support No

Safari iOS

No support 4.2 — 5.1

Samsung Internet Android

No support No

Legend

No support  
No support
Non-standard. Expect poor cross-browser support.'
Non-standard. Expect poor cross-browser support.


See also