We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By default, all input elements have a 12px left-right padding:
input
12px
textarea, select, input { padding: 6px 12px; ... }
For an <input type="range" ... this causes an issue (at least in Chrome 83) with incorrectly rendering the input:
<input type="range" ...
Min value:
Mid value:
Max value:
Without the left-right padding, the input is rendered correctly.
The text was updated successfully, but these errors were encountered:
Hi, I just ran into the strange rendering behaviour myself https://dabase.com/tips/web/2021/Minimal-VueJS-route-bind
It also looks unusable on Safari https://s.natalian.org/2021-09-07/range.png in dark mode by default.. 😓
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
By default, all
input
elements have a12px
left-right padding:For an
<input type="range" ...
this causes an issue (at least in Chrome 83) with incorrectly rendering the input:Min value:
Mid value:
Max value:
Without the left-right padding, the input is rendered correctly.
The text was updated successfully, but these errors were encountered: