mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
55 lines
950 B
HTML
55 lines
950 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table {
|
|
width: 300px;
|
|
height: 300px;
|
|
background-color: blue;
|
|
}
|
|
td {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#rel {
|
|
position: relative;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#abs {
|
|
position: absolute;
|
|
margin: 0;
|
|
padding: 0;
|
|
top: 200px;
|
|
left: 25px;
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
The green square should not touch the blue square.
|
|
<table>
|
|
<colgroup>
|
|
<col style="width: 15%">
|
|
<col>
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</thead>
|
|
<thead id="rel">
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<div id="abs"></div>
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</body>
|
|
</html>
|