2015-02-12 59 views
1

我的網站只是「爲什麼這個文本很小?」。屏幕上。它適用於應用於它的css樣式,但不在IE 8中。IE 8特定樣式表將無法使用條件註釋

的HTML是:

<!--[if IE 8 ]> 
    <p>Only IE 8 will see this</p> 
<![endif]--> 

<div class="font4">Why is this text small?</div> 

,並在頂部的風格標籤內 「font4」 的造型,就是:

.font4 { 
    margin-top: 4%; 
    margin-bottom:3%; 
    color: #030; 
    font-family: "Times New Roman", Times; 
    font-size: 6vh; 
    text-align:center; 
} 

但是,如果我在IE 8瀏覽它,它會顯示得小,像這樣:

screenshot

所以我把這個網站的頭:

<!--[if IE 8]> 
    <link rel="stylesheet" type="text/css" href="http://testsite24.netai.net/public/ie8.css"> 
<![endif]--> 

和ie8.css已正確關聯。對於ie8.css的代碼是:

@charset "utf-8"; 
/* CSS Document */ 

.font4 { 
    margin-top: 4%; 
    margin-bottom:3%; 
    color: #030; 
    font-family: "Times New Roman", Times; 
    font-size: 10vh; 
    text-align:center; 
} 

但它爲什麼不迴應font-size: 10vh;

,您可以在這裏查看我的網站:http://testsite24.netai.net/public/demo.html

謝謝!

回答