mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
545 B
HTML
29 lines
545 B
HTML
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
||
|
<style>
|
||
|
div {border:solid green; position:absolute; top:150px;right:150px;width:60%}
|
||
|
table {border:solid blue; width:60%}
|
||
|
table.ab {position:absolute; top:200px;right:200px}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table class="ab">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>foo</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<table>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>foo</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<div>div</div>
|
||
|
</body>
|
||
|
</html>
|