选项卡的IE css宽度问题

时间:2012-07-06 06:27:18

标签: css

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

LIVE EXAMPLE

这是控制宽度的CSS

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

enter image description here

1 个答案:

答案 0 :(得分:0)

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

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

并在那里写下宽度。

但是我正在查看chrome上的链接,看起来它也没有与标签的边缘对齐。