我正在使用具有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");
答案 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>