What can I do to force <td>'s to render to a desired width in NN (I have NN 6.2) For example, if I want a black vertical bar in a table - if I use
this works fine in IE, but in NN it does not dispay it since there is nothing else in the td. If I put a character inside the <td> tags, then it displays a black bar, but it is wider than I want since it is the width of a character.
Similary, if I want to center a table in a <td> and I use something like:
This works fine in IE, it makes the column 150mm wide and centers the table in the middle of it. But in NN, it just collapses the column to the width of the table - the column is only as wide as the table is, no whitespace on either side. (except for what I have defined for padding) I've tried using min-width instead of width, but same result.
Thanks,
Doug
Code:
<td style={width:1px;background-color:black}></td>
Similary, if I want to center a table in a <td> and I use something like:
Code:
<td style={width:150mm} align=center><table>.....</table></td>
Thanks,
Doug