зеркало из https://github.com/mozilla/gecko-dev.git
34 строки
612 B
HTML
34 строки
612 B
HTML
<!DOCTYPE>
|
|
<head>
|
|
<style>
|
|
body {
|
|
border: 0px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
table {
|
|
border-spacing: 0px;
|
|
}
|
|
div {
|
|
width: 100px; height: 200px;
|
|
}
|
|
td {
|
|
width: 50px; height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<td style="background-color: rgb(0, 191, 0)"></td>
|
|
<td style="background-color: rgb(0, 255, 1)"></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="background-color: rgb(254, 0, 122)"></td>
|
|
<td style="background-color: rgb(254, 0, 122)"></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</body>
|