1
0
mirror of https://github.com/classilla/tenfourfox.git synced 2025-03-08 09:32:25 +00:00
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

25 lines
444 B
HTML

<!doctype html>
<html><head>
<title>Table border collapse</title>
<style>
table {
border: 2px solid black;
border-collapse: collapse;
}
td {
border: 2px solid black;
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<table>
<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
</table>
</body></html>