表格单元格内的标签在IE 7中创建换行符

时间:2011-04-11 10:15:28

标签: html css jsp internet-explorer-7 struts

我正在使用具有jsp页面的struts中的应用程序。在IE 7长标签内标记创建换行符。知道可能是什么问题吗?

表用于显示记录。如果没有记录,我会显示这句话。

<tr><td colspan="6">No tags are currently stored in the database for this component</td></tr>

这是css代码

table.outer_1 td { 

  border-right: 2px solid #CCCCCC; 
  border-bottom: 2px solid #CCCCCC; 
  border-left: 2px solid #CCCCCC; 
  border-top: 2px solid #CCCCCC;
  padding:4px;
  max-width:250px;
  width:expression(250 + "px");
  word-wrap:break-word;
}

我认为width:expression(250 + "px");

存在问题

1 个答案:

答案 0 :(得分:0)

写完这段代码后,我的问题就解决了。

 <!--[if lte IE 8]>
     <style type="text/css" media="screen">
           table.outer_1 td { width:expression(450 + "px") !important; }
     </style> 
<![endif]-->

 <tr><td colspan="6">No tags are currently stored in the SABMiller database for this component</td></tr>