blob: 6e65c842af5b0156777734cdfec4845cfe9579a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head><style>
table {
width: 10px;
}
div.auto {
overflow: auto;
height: 50px;
background: lightgreen;
}
</style></head>
<body>
<table><tr><td>
<div class="auto">
x xx x xx x xx x xx x xx x xx x xx x
xxxxxx
</div>
</td></tr></table>
</body>
</html>
|