blob: cd71a1bd5b79c311243c7fd25a3c52f076bdfb21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body { padding-right: 100px; }
div { border: 1px solid purple; overflow-x: scroll; overflow-y: hidden; width: 300px; margin: 0 50px 0 0; padding: 0; }
span { display: inline-block; height: 50px; margin: 0; }
</style>
</head>
<body dir="rtl">
<div style="display: -moz-box;">
<span style="background: green; width: 50px; position: fixed; margin-inline-start: -50px"></span>
<span style="background: yellow; width: 400px; overflow: hidden"></span>
</div>
</body>
</html>
|