-3
我需要在頁面的HEAD中添加對外部css文件的引用。 但它只能添加到IE瀏覽器。如何加載瀏覽器特定的外部css文件?
這可能嗎?
<head>
<link type="text/css" rel="stylesheet" href="/themes/jfile.css" />
</head>
我需要在頁面的HEAD中添加對外部css文件的引用。 但它只能添加到IE瀏覽器。如何加載瀏覽器特定的外部css文件?
這可能嗎?
<head>
<link type="text/css" rel="stylesheet" href="/themes/jfile.css" />
</head>
簡單
<!--[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]-->
<!--[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]-->
這個問題已經被問這樣的100倍,請搜索您的問題,您添加另一個重複堆前,有一個鏈接添加到其中的一個 – iConnor