scrollable-horizontal-margin.html 560 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE HTML>
  2. <html><head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. <title>Testcase for bug 724352</title>
  5. <style type="text/css">
  6. html,body {
  7. color:black; background-color:white; font-size:16px; padding:0; margin:0;
  8. }
  9. x1,x2,x3,x4,x5,x6 { display:block; }
  10. x2 { overflow:auto; width:100px; background:grey; }
  11. x4 { width: 70px; margin: 0 20px; }
  12. </style>
  13. </head>
  14. <body>
  15. <x1><x2 style="height:50px;">
  16. <x4 style="height:20px; background:lime; "></x4>
  17. </x2></x1>
  18. </body>
  19. </html>