OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 html, body { | 5 html, body { |
6 margin: 0; | 6 margin: 0; |
7 padding: 0; | 7 padding: 0; |
8 } | 8 } |
9 .container { | 9 .container { |
10 width: 100px; | 10 width: 100px; |
11 height: 100px; | 11 height: 100px; |
12 background-color: lime; | 12 background-color: lime; |
13 position: relative; | 13 position: relative; |
| 14 display: block; |
| 15 font-family: "Arial"; |
| 16 font-size : 12pt; |
14 } | 17 } |
15 .scrollbar { | 18 .scrollbar { |
16 background-color: #808080; | 19 background-color: #808080; |
17 position: absolute; | 20 position: absolute; |
18 } | 21 } |
19 .vertical { | 22 .vertical { |
20 width: 3px; | 23 width: 3px; |
21 height: 92px; | 24 height: 92px; |
22 } | 25 } |
23 </style> | 26 </style> |
24 <script> | 27 <script> |
25 </script> | 28 </script> |
26 </head> | 29 </head> |
27 <body> | 30 <body> |
28 <p>You should see 2 green boxes with overlay scrollbar. The second box | 31 <p>You should see 2 green boxes with-out overlay scrollbar.</p>» |
29 should have a scrollbar on the left.</p> | |
30 | 32 |
31 <div class="container"> | 33 <div class="container"></div> |
32 <div class="scrollbar vertical" style="right: 4px; top: 4px;"></div> | 34 <div dir="rtl" class="container"></div> |
33 </div> | |
34 <div dir="rtl" class="container"> | |
35 <div class="scrollbar vertical" style="left: 4px; top: 4px;"></div> | |
36 </div> | |
37 </body> | 35 </body> |
38 </html> | 36 </html> |
OLD | NEW |