blob: 0e573cb3d6cbac837c9e10552e360aa713fee60b (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<style>
.vertical {
writing-mode: vertical-rl;
}
</style>
<body>
<input placeholder="placeholder">
<input class="vertical" placeholder="placeholder">
</body>
|