blob: be8c642459335af6ec7f31c6014c8b676ecd6ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<style>
#v {
column-count: 2;
width: 10ch;
height: 3.7em;
font: 14px monospace;
text-transform: lowercase;
direction: rtl;
border: 1px solid black;
}
</style>
</head>
<body onload="document.getElementById('v').style.direction = 'ltr';">
<div id="v">aaaa bbbb cccc dddd eeee !</div>
</body>
</html>
|