OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <title>CSS Reference</title> | |
3 <link rel="author" title="Adobe" href="http://html.adobe.com/"> | |
4 <link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com"> | |
5 <link rel="help" href="http://dev.w3.org/csswg/css-shapes-1/#relation-to-box-mod
el-and-float-behavior"> | |
6 <meta name="flags" content="ahem"> | |
7 <head> | |
8 <style> | |
9 .container { | |
10 font: 20px/1 Ahem, sans-serif; | |
11 width: 20px; | |
12 height: 100px; | |
13 border: 1px solid black; | |
14 color: green; | |
15 display: inline-block; | |
16 -webkit-writing-mode: vertical-lr; | |
17 background-color: red; | |
18 } | |
19 </style> | |
20 | |
21 <body> | |
22 <p>This should display two vertical green bars. You should not see any red.<
/p> | |
23 <div class="container"> | |
24 XXXXX | |
25 </div> | |
26 <div class="container"> | |
27 XXXXX | |
28 </div> | |
29 </body> | |
OLD | NEW |