mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
47 lines
802 B
HTML
47 lines
802 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 border="1">
|
|
<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>
|