<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
 <title>Tabellen, 6. &Uuml;bung - HTML - Workshop Internet-Pr&auml;senz</title>

 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

 <meta name="description"
  content="&Uuml;bung Tabellen: Kombination relativer und absoluter Breiten mit
  colgroup-Tag." />
 <meta name="keywords" content="HTML, Tabellen, colgroup" />
 <meta name="author" content="Roland Unger" />
</head>

<body>

<h1>Tabellen, 7. &Uuml;bung</h1>

<h2>Kombination relativer und absoluter Breiten mit colgroup-Tag</h2>

<table summary="Tabelle mit Kombination relativer und absoluter Breiten"
 cellspacing="0" cellpadding="0" border="1" align="center" width="100%">

<colgroup>
 <col width="49" />
 <col width="20" />
 <col width="1" />
 <col width="*" />
 <col width="1" />
 <col width="20" />
 <col width="49" />
</colgroup>

<tr>
 <td><img src="html_pagewrit.gif" width="49" height="43" alt="Bild" style="display: block" /></td>
 <td>&nbsp;</td>
 <td bgcolor="#FF0000"><img src="html_dot.gif" width="1" height="1" alt="" style="display: block" /></td>
 <td align="center">Zelle 2</td>
 <td bgcolor="#FF0000"><img src="html_dot.gif" width="1" height="1" alt="" style="display: block" /></td>
 <td>&nbsp;</td>
 <td><img src="html_pagewrit.gif" width="49" height="43" alt="Bild" style="display: block" /></td>
</tr>
</table>

</body>
</html>