mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
599 B
HTML
20 lines
599 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body { padding-right: 100px; }
|
|
div.x1 { border: 1px solid purple; overflow-x: scroll; overflow-y: hidden; width: 300px; margin: 0 50px 0 0; padding: 0; }
|
|
div.x2 { height: 50px; }
|
|
span { display: inline-block; height: 50px; margin: 0; }
|
|
</style>
|
|
</head>
|
|
<body dir="rtl">
|
|
<div class="x1">
|
|
<span style="background: green; width: 50px; position: fixed; -moz-margin-start: -50px"></span>
|
|
<div class="x2">
|
|
<span style="background: yellow; width: 400px; overflow: hidden"></span>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|