2012-07-06 131 views
1

標籤內容在除IE以外的所有瀏覽器中均可正常顯示。有沒有用IE瀏覽器糾正這個大小問題?標籤IE的css寬度問題

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

+0

在IE9中,我實際上可以看到下一個和上一個箭頭,這在FF 13.0.1中沒有看到。你使用什麼版本的IE? – utsikko 2012-07-06 06:49:24

回答

0

你可以設置一個目標只有IE有條件的CSS。

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

並在那裏寫入寬度。

但我正在查看Chrome上的鏈接,它看起來像它也沒有對齊到標籤邊緣。