1

标签内容在除 IE 之外的所有浏览器中都能很好地显示。是否可以通过 IE 浏览器来纠正该大小问题?

活生生的例子

这是控制宽度的CSS

div.st_horizontal { /* The main container */    
    position:relative;
    float:left;
    /*clear:both; */
    width:655px;  /*Set the full width */  
    color:#616161;
}

在此处输入图像描述

4

1 回答 1

0

您可以设置仅针对 IE 的条件 CSS。

<!--[if IE]><link rel="stylesheet" type="text/css" href="css/ie.css" /><![endif]-->

并在那里写下宽度。

但我正在查看 chrome 上的链接,它似乎也没有与选项卡的边缘对齐。

于 2012-07-06T10:43:52.440 回答