blob: bc4a00ef8e6960f6e6308609687c424f33ef5c30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head><style>
table {
width: 10px;
}
div.scroll {
overflow: scroll;
background: lightgreen;
}
</style></head>
<body>
<table><tr><td>
<div class="scroll">xxx</div>
</td></tr></table>
</body>
</html>
|