2014-04-01 89 views
-3

我需要在頁面的HEAD中添加對外部css文件的引用。 但它只能添加到IE瀏覽器。如何加載瀏覽器特定的外部css文件?

這可能嗎?

<head> 
<link type="text/css" rel="stylesheet" href="/themes/jfile.css" /> 

</head> 
+0

這個問題已經被問這樣的100倍,請搜索您的問題,您添加另一個重複堆前,有一個鏈接添加到其中的一個 – iConnor

回答

0

簡單

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

或者

<!--[if lt IE 9]> 
    According to the conditional comment this is IE lower than 9<br /> 
<![endif]--> 
0
<!--[if IE 6]> 
    <link rel="stylesheet" href='/Common/Css/ie6.css' type="text/css" /> 
<![endif]--> 
<!--[if IE 7]> 
    <link rel="stylesheet" href='/Common/Css/ie7.css' type="text/css" /> 
<![endif]--> 
<!--[if IE 8]> 
    <link rel="stylesheet" href='/Common/Css/ie8.css' type="text/css" /> 
<![endif]-->