B
Bernd Meier
Why has the value of height no consequences in the below example?
If I change width I get changes but not if I change height.
<html>
<head>
<title>HTML-Test</title>
</head>
<body>
<h3>HTML-Test</h3>
<table border="5">
<colgroup>
<col width="50" height="100">
<col width="50" height="100">
<col width="50" height="100">
</colgroup>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</table>
</body>
</html>
If I change width I get changes but not if I change height.
<html>
<head>
<title>HTML-Test</title>
</head>
<body>
<h3>HTML-Test</h3>
<table border="5">
<colgroup>
<col width="50" height="100">
<col width="50" height="100">
<col width="50" height="100">
</colgroup>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</table>
</body>
</html>