Mypal/layout/reftests/bugs/167496-1-ref.html
2019-03-11 13:26:37 +03:00

48 lines
793 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">
<title>table border/css test</title>
<style type="text/css">
<!--
table {
border: 1px solid blue;
border-collapse: collapse;
}
th {
border: 1px outset silver;
}
td {
border: 1px outset silver;
}
-->
</style>
</head>
<body>
<table>
<tbody>
<tr>
<th>Table-header</th>
<th>Table-header</th>
<th>Table-header</th>
</tr>
<tr>
<td>Table-data</td>
<td>Table-data</td>
<td>Table-data</td>
</tr>
<tr>
<td>Table-data</td>
<td>Table-data</td>
<td>Table-data</td>
</tr>
</tbody>
</table>
</body>
</html>