In my CSS file, I have defined the following style:
.ES{
max-width:20px;
word-wrap:break-word;
}
However, when I apply this to my table...
<table border="1" cellpadding="2" class="ES" >
<tr>
<td><input name="rbeso" type="radio" id="rblimpet" value="limpet" title="Seafood" /><b>The Doctor Limpet</b> Fresh from the sea! Crab flakes, alfredo sauce and mozzarella cheese.</td>
</tr>
I expected the cells to have a maximum width, but it doesn't seem to be affecting them...