Maison > Article > interface Web > jsp页面td不靠右的问题_html/css_WEB-ITnose
同一段代码,td内的内容在ie10、360的ie10模式、360的极速模式都靠右。但是在chrome40.0.*版本上不靠右。
代码如下:
<td width="82" height="24"> <table width="82" height="24" border="1" cellpadding="0" cellspacing="0" style="text-align:right"> <tr class="formtext"> <td width="10" height="24"> </td> <td width="72" valign="middle" align="right" style="text-align:right"><nobr>B设备IP | </nobr></td> </tr> </table></td>
看看是不是 引起的
应该是宽度不够,而文本又撑不上去。
在td里面加上border: 1px solid red; 这个样式。
利用td的边框,查看他的宽度到底多大。 然后再看文本,实际占用空间多大。
看看是不是 引起的
<table height="24" border="1" cellpadding="0" cellspacing="0" style="font-family: '宋体'"> <tr> <td>我是汉字</td> </tr> <tr> <td> 我是汉字</td> </tr> <tr> <td> 我是汉字</td> </tr></table>