<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Tabellen, 6. Übung - HTML - Workshop Internet-Präsenz</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="description" content="Ü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. Ü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> </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> </td> <td><img src="html_pagewrit.gif" width="49" height="43" alt="Bild" style="display: block" /></td> </tr> </table> </body> </html>