blob: d889cbd2d5db0e4291373804d87ae1e1bb60ff35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE HTML>
<html>
<head>
<style>
body > div { width:200px; height:50px; border:1px solid black; margin-bottom:2em; }
body > div > div { height:10px; background:yellow; }
</style>
</head>
<body>
<div style="overflow-x:hidden;">
<div style="width:200px;"></div>
</div>
<div style="overflow-x:scroll;">
<div style="width:201px;"></div>
</div>
<div style="direction:rtl; overflow-x:hidden;">
<div style="width:200px;"></div>
</div>
<div style="direction:rtl; overflow-x:scroll;">
<div style="width:201px;"></div>
</div>
</body>
</html>
|