Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 body { padding-right: 100px; }
6 div.x1 { border: 1px solid purple; overflow-x: scroll; overflow-y: hidden; width: 300px; margin: 0 50px 0 0; padding: 0; }
7 div.x2 { height: 50px; }
8 span { display: inline-block; height: 50px; margin: 0; }
9 </style>
10 </head>
11 <body dir="rtl">
12 <div class="x1">
13 <span style="background: green; width: 50px; position: fixed; -moz-margin-start: -50px"></span>
14 <div class="x2">
15 <span style="background: yellow; width: 400px; overflow: hidden"></span>
16 </div>
17 </div>
18 </body>
19 </html>