mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
19 lines
382 B
HTML
19 lines
382 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<table style="width: 100px; height: 100px;">
|
|
<tbody style="height: 100%;"> <!-- required for older ffox versions -->
|
|
<tr>
|
|
<td style="height: 100%;">
|
|
<div style="height: 100%; width: 100%;overflow:scroll;">
|
|
<div style="height: 200px">
|
|
</div>
|
|
Some text
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|