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; |
(...skipping 14 matching lines...) Expand all Loading... |
25 </script> | 25 </script> |
26 </head> | 26 </head> |
27 <body> | 27 <body> |
28 <p>You should see 2 green boxes with overlay scrollbar. The second box | 28 <p>You should see 2 green boxes with overlay scrollbar. The second box |
29 should have a scrollbar on the left.</p> | 29 should have a scrollbar on the left.</p> |
30 | 30 |
31 <div class="container"> | 31 <div class="container"> |
32 <div class="scrollbar vertical" style="right: 4px; top: 4px;"></div> | 32 <div class="scrollbar vertical" style="right: 4px; top: 4px;"></div> |
33 </div> | 33 </div> |
34 <div dir="rtl" class="container"> | 34 <div dir="rtl" class="container"> |
35 <div class="scrollbar vertical" style="left: 0px; top: 4px;"></div> | 35 <div class="scrollbar vertical" style="left: 4px; top: 4px;"></div> |
36 </div> | 36 </div> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |