mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|