mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1 line
648 B
HTML
1 line
648 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
|
|
"http://www.w3.org/TR/REC-html40/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Cols and colspan</title>
|
|
<style type="text/css">
|
|
<!--
|
|
table {margin: 1em 0; width: 200px; border: 2px solid black;}
|
|
td {border: 1px solid gray; background: #EFE;}
|
|
-->
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>no cols or colspans</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table cols="4">
|
|
<tr>
|
|
<td>cols=4</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table>
|
|
<tr>
|
|
<td colspan="4">colspan=4</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table cols="4">
|
|
<tr>
|
|
<td colspan="4">cols=4, colspan=4</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table cols="4">
|
|
<tr>
|
|
<td colspan="4">see previous</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|