OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
2 <HTML style="-webkit-writing-mode:vertical-lr"> | 2 <HTML style="-webkit-writing-mode:vertical-lr"> |
3 <HEAD> | 3 <HEAD> |
4 <TITLE>lists with direction:rtl</TITLE> | 4 <TITLE>lists with direction:rtl</TITLE> |
5 <style> | 5 <style> |
| 6 body { overflow: hidden; } |
6 li { border:5px solid orange; padding:5px; } | 7 li { border:5px solid orange; padding:5px; } |
7 .img { list-style-image: url(resources/white.gif) } | 8 .img { list-style-image: url(resources/white.gif) } |
8 </style> | 9 </style> |
9 </HEAD> | 10 </HEAD> |
10 <BODY> | 11 <BODY> |
11 <UL style="height:20ex; border:1px blue solid;"> | 12 <UL style="height:20ex; border:1px blue solid;"> |
12 <LI>First item | 13 <LI>First item |
13 <LI>Second and very very long item | 14 <LI>Second and very very long item |
14 <LI>Third item | 15 <LI>Third item |
15 </UL> | 16 </UL> |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 <LI>Second and very very long item | 62 <LI>Second and very very long item |
62 <LI>Third item | 63 <LI>Third item |
63 </OL> | 64 </OL> |
64 <OL style="direction:rtl; height:20ex; border:1px red solid; list-style-position
:inside;"> | 65 <OL style="direction:rtl; height:20ex; border:1px red solid; list-style-position
:inside;"> |
65 <LI>First item | 66 <LI>First item |
66 <LI>Second and very very long item | 67 <LI>Second and very very long item |
67 <LI>Third item | 68 <LI>Third item |
68 </OL> | 69 </OL> |
69 | 70 |
70 </BODY> | 71 </BODY> |
71 </HTML> | 72 </HTML> |
OLD | NEW |