blob: c7b041f79c94707d51911ce19774e445806e6c4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
table {
border-collapse: collapse;
}
td {
background-color: rgb(0, 255, 0);
margin-bottom: 10px;
height: 100px;
width:100px;
}
</style>
<table>
<tr>
<td></td>
</tr>
</table>
|