mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
27 lines
404 B
HTML
27 lines
404 B
HTML
<html>
|
|
<head><style>
|
|
table {
|
|
width: 10px;
|
|
}
|
|
div.auto {
|
|
overflow: auto;
|
|
height: 50px;
|
|
background: lightgreen;
|
|
}
|
|
div.invis {
|
|
color: white;
|
|
}
|
|
</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>
|
|
<div class="invis">
|
|
xxxxxx
|
|
</div>
|
|
</td></tr></table>
|
|
</body>
|
|
</html>
|