mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
The spec says: > For the purpose of this specification, they all have the same effect as auto. However, the host language may also take these values into account when defining the native appearance of the element. https://drafts.csswg.org/css-ui/#typedef-appearance-compat-special Firefox at least hides the stepper buttons when this is set.
5 lines
173 B
HTML
5 lines
173 B
HTML
<!doctype html>
|
|
<input type="number" value="1" />
|
|
<input type="number" style="appearance: auto" value="2" />
|
|
<input type="number" style="appearance: textfield" value="3" />
|