blob: cf20a034d73e30326038cab5608796bd7d368b15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<meta charset="utf-8">
<style>
input {
appearance: none;
outline: 2px solid black;
overflow: clip;
}
</style>
<input type="number" style="writing-mode: vertical-lr">
<input type="number" style="writing-mode: vertical-rl">
|