这个网页表格 我设置的是单元格文字居中,在IE6浏览 上行怎么靠左?下行正常居中,但在火狐浏览上下行都是正常居中。哪的问题?
<table width="1380" border="1" cellpadding="3" cellspacing="1" >
<td width="50">型号</td>
<td width="25">类型</td>
<td width="39">生产</td>
</tr>
<tr height="25" bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#EBF3FC'" >
<td>GT100L</td>
<td>General</td>
<td>Vis</td>
</table>
IE6的兼容性存在很大的问题,这个只能慢慢调试
<table width="1380" border="1" cellpadding="3" cellspacing="1" >
------------------------>这里是不是少了个<tr>标签???
<td width="50">型号</td>
<td width="25">类型</td>
<td width="39">生产</td>
</tr>
第一行少了<tr>开始标签,第二行少了</tr>结束标签了,
第一行没有<tr>开始标签当然不会正确的按设置去显示啊
嗯,同意楼上