new2this2002
Programmer
I have the following code.....
when i view this table in IE the combo box is anchored to the top of the table cell...but when i view the page in Netscape or FireFox it is vertically aligned in the center of the table cell. Does anyone have any clues as to why this might be as the 'content' is vertically aligned in the center is all the browsers, i assume i have something missing with the DIV tag...
Code:
<table cellspacing="0" width="100%">
<tr>
<td width="25%" valign="middle"></td>
<td width="50%" valign="middle">content</td>
<td width="25%" align="right" valign="middle">
<div>
<form>
<p>
<select>
<option value="original" selected="selected">original</option>
</select>
</p>
</form>
</div>
</td>
</tr>
</table>
when i view this table in IE the combo box is anchored to the top of the table cell...but when i view the page in Netscape or FireFox it is vertically aligned in the center of the table cell. Does anyone have any clues as to why this might be as the 'content' is vertically aligned in the center is all the browsers, i assume i have something missing with the DIV tag...