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
vertical-lr
rtl
Hello,
I have a problem with vertical range sliders: the tooltip text is written backwards.
Based on the article Creating vertical form controls, I've created a vertical range slider: jsbin
<form> <input type="range" value="42" title="42 %" /> </form>
input[type="range"] { writing-mode: vertical-lr; direction: rtl; }
But the text in the tooltip is written backwards (expected: 42 %). I think it's because the direction: rtl also applies to the tooltip.
direction: rtl
This comment reports a similar problem (which has been fixed): the orientation of the tooltip is changed.
The text was updated successfully, but these errors were encountered:
This would require solving w3c/csswg-drafts#9832.
Sorry, something went wrong.
No branches or pull requests
What is the issue with the HTML Standard?
Hello,
I have a problem with vertical range sliders: the tooltip text is written backwards.
Based on the article Creating vertical form controls, I've created a vertical range slider: jsbin
But the text in the tooltip is written backwards (expected: 42 %). I think it's because the
direction: rtl
also applies to the tooltip.This comment reports a similar problem (which has been fixed): the orientation of the tooltip is changed.
The text was updated successfully, but these errors were encountered: