I have asked a similar question to this elsewhere on this site, but I thought I’d give this another go in simpler terms.
I am new to Dreamweaver, and I am currently trying to create a simple table of 14 columns. I want them to be the same size.
I currently have the following code. But when I type in dreamweaver, the column widths all move around. I don’t want this, I want the code to wrap. So if for example I input xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx into one of the cells, it expands and reduces the other columns, how do I overcome this?
table.teams{table-layout:fixed; overflow:auto; width:745; align:center; cellspacing:0; cellpadding:0;}
<table class="teams">
<tr>
<td width="5%"> </td>
<td width="5%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="8%"></td>
<td width="5%"></td>
<td width="5%"></td>
</tr>

