blob: ad1ecc35ee913a2850bf42ed0e66397f30d19315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<title>Reference: Number input in vertical writing mode with long value does not cause ink overflow</title>
<p>Number input with long value does not cause ink overflow</p>
<style>
input {
writing-mode: vertical-lr;
appearance: none;
inline-size: 10em;
}
</style>
<input type="number">
|