OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 .scrollingElement | |
4 { | |
5 width: 100px; | |
6 height: 100px; | |
7 background-color: green; | |
8 } | |
9 table | |
10 { | |
11 margin-bottom: 35px; | |
12 } | |
13 </style> | |
14 <table class="scrollingElement" cellspacing=0> | |
15 <tbody> | |
16 <tr><td> text text text text</td></tr> | |
17 </tbody> | |
18 </table> | |
19 <table cellspacing=0> | |
20 <tbody class="scrollingElement"> | |
21 <tr><td> text text text text</td></tr> | |
22 </tbody> | |
23 </table> | |
24 <table cellspacing=0> | |
25 <tbody> | |
26 <tr class="scrollingElement"><td>text text text text</td></tr> | |
27 </tbody> | |
28 </table> | |
29 <p> crbug.com/368699: Tables, table rows and table sections don't have scrollbar s when they have overflow:scroll. </p> | |
OLD | NEW |