::-webkit-inner-spin-button CSS pseudo-elementNon-standard: This feature is not standardized. We do not recommend using non-standard features in production, as they have limited browser support, and may change or be removed. However, they can be a suitable alternative in specific cases where no standard option exists.
The ::-webkit-inner-spin-button CSS pseudo-element is used to style the inner part of the spinner button of number picker input elements.
::-webkit-inner-spin-button {
/* ... */
}These examples work only in browsers based on WebKit and Blink.
In this example, the CSS cursor is changed to pointer whenever the cursor is positioned over the inner part of the input's spin controls.
<input type="number" />input[type="number"]::-webkit-inner-spin-button {
cursor: pointer;
}Not part of any standard.