Jump to content
  • 0

опять наш любимый IE


termoplus
 Share

Question

если нужно прописать два спец класса, первый для всех браузеров IE кроме версию 8, другой только для версии 6, выходит так что нужно в теге head прописывать 2 события???????

<!--[if lt IE 8]>

<link href="" rel="stylesheet" type="text/css" />

<![endif]-->

———-

<!--[if IE 6]>

<link href="" rel="stylesheet" type="text/css" />

<![endif]-->

можно как-то совместить?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

попробуйте подгрузить нужный css файл при помощи JS

вот я делал так, данная функция подгружает заданный файл с правилами

//Load CSS:

//css_location - absolute CSS file url;

//

function loadCssFile(css_location) {

var cssElement, parentElement;

cssElement = document.createElement('link');

cssElement.href = css_location;

cssElement.type = "text/css";

cssElement.rel = "stylesheet";

cssElement.media = "screen";

parentElement = document.getElementsByTagName('head')[0];

parentElement.appendChild(cssElement);

cssElement.disabled = false;

}

Link to comment
Share on other sites

  • 0
Оставляем

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

А уже в самом файле пишем:

.blah-blah { /* для всех до восьмого */
blah: blah-blah-blah;
}
* html .blah { /* для шестого */
blah-blah: 42;
}

дело в том, что одно другому мешает. настройки для ИЕ6 действуют на версию 7+, а версия 8 на 6-ку.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy