Jump to content
  • 0

<!--[if !IE]> - не работает


SoFuWa
 Share

Question

Зачем это нужно:

<!--[if !IE]> <![endif]--> - для всех кроме IE

Если это не работает. Добавил туда файл стилей и опера пропускает его мимо ушей. На других браузерах не проверял ибо какой смысл если уже не кроссбраузерно.

Да IE тоже не читает это, но и опере пофиг на эту запись :)

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

Есть команда <!--[if IE]> и допустимы ключевые слова

lt — номер версии браузера меньше указанной;

gt — номер версии больше указанной;

lte — номер версии меньше или равен указанной;

gte — номер версии браузера больше или равен указанной.

Все остальное игнорируется. Остальные браузеры вообще считают за каменты и пропускают.

Link to comment
Share on other sites

  • 0
Хорошо, есть такой оператор, но в контексте !IE толку от него нет.
If the following code fails to exclusively detect Firefox..

<!--[if !IE]>

...statements...

<![endif]-->

Use "Downlevel-revealed Conditional Comments" to get it working...

<![if !IE]>

...statements...

<![endif]>

В принципе и в других браузерах работает (Opera, Safari, Chrome).

<!DOCTYPE html PUBLIC  "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head> <title></title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="#" rel="stylesheet" type="text/css" />
<style type="text/css">

</style>
</head>
<body>
<!--[if IE]><p>You are using Internet Explorer.</p><![endif]-->

<![if !IE]>
<p>You are not using Internet Explorer.</p>
<![endif]>
</body>
</html>

Link to comment
Share on other sites

  • 0
Невалидный код получается, с той же целью можно и <comment> использовать.

Хаки под ИЕ тоже не все валидные :)

Но на практике это практически не применяется.

На практике обычно всё наоборот. Обособляют стили для ИЕ, а не нормальных браузеров.

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