mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
21 lines
313 B
HTML
21 lines
313 B
HTML
<html>
|
|
<head><style>
|
|
table {
|
|
width: 10px;
|
|
}
|
|
div.scroll {
|
|
overflow: scroll;
|
|
background: lightgreen;
|
|
}
|
|
div.invis {
|
|
color: white;
|
|
}
|
|
</style></head>
|
|
<body>
|
|
<table><tr><td>
|
|
<div class="scroll">xxx</div>
|
|
<div class="invis">xxx</div>
|
|
</td></tr></table>
|
|
</body>
|
|
</html>
|