Welkom bij voorbeelden

voorbeeld th nowrap attribuut

<table width="500">
<tr>

<th bgcolor="9fdcfb" colspan="2">Het nowrap attribuut is afgekeurd en wordt NIET ondersteund
door HTML 4.01 Strict DTD en XHTML 1.0 Strict DTD.</th>
</tr>
<tr>

<th>BTW</th>
<th>
Percentage (%)</th>
</tr>
<tr>
<td>
basisproducten</td>
<td>
6%</td>
</tr>
<tr>
<td>
margarine</td>
<td>
12%</td>
</tr>
<tr>
<td>
nieuwe auto</td>
<td>
21%</td>
</tr>
</table>

zonder nowrap
Het nowrap attribuut is afgekeurd en wordt NIET ondersteund door HTML 4.01 Strict DTD en XHTML 1.0 Strict DTD.
BTW Percentage(%)
basisproducten 6%
margarine 12%
nieuwe auto 21%

<table width="500">
<tr>

<th bgcolor="9fdcfb" colspan="2" nowrap="nowrap">Deze tekst blijft doorlopen en zal niet worden afgebroken bij het einde van de tabel ondanks width="500".</th>
</tr>
<tr>

<th>BTW</th>
<th>
Percentage (%)</th>
</tr>
<tr>
<td>
basisproducten</td>
<td>
6%</td>
</tr>
<tr>
<td>
margarine</td>
<td>
12%</td>
</tr>
<tr>
<td>
nieuwe auto</td>
<td>
21%</td>
</tr>
</table>

met nowrap
Deze tekst blijft doorlopen en zal niet worden afgebroken bij het einde van de tabel ondanks width="500"xxxxxxx
BTW Percentage(%)
basisproducten 6%
margarine 12%
nieuwe auto 21%