blob: 03e4727c53f4ee50e8d2b3e17d515a764cce9654 (
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; overflow:auto; border:1px solid black; margin-bottom:2em; }
body > div > div { height:10px; background:yellow; }
</style>
</head>
<body>
<div>
<div style="width:200.1px;"></div>
</div>
<div>
<div style="width:201px;"></div>
</div>
<div style="direction:rtl;">
<div style="width:200.1px;"></div>
</div>
<div style="direction:rtl;">
<div style="width:201px;"></div>
</div>
</body>
</html>
|