Jump to content
  • 0

Условные комментарии


Rustick
 Share

Question

Можно ли применять несколько условных комментариев, отдельно для 6,7,8 версии.

То есть, чтобы в коде было так:

<!--[if IE 6]>

Код для браузера Internet Explorer

<![endif]-->

<!--[if IE 7]>

Код для браузера Internet Explorer

<![endif]-->

<!--[if IE 8]>

Код для браузера Internet Explorer

<![endif]-->

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

http://www.mykhailenko.com/blog/2011-02-17/conditional-comments-4-ie.html

Вот пример мой!!открой в ие6 ие7 ие 8 и опера

<html>
<head>
<style type="text/css">
.red{
color: orange;
}
</style>
<!--[if IE 6]>
<style type="text/css">
.red{
color:red;
}
</style>
<![endif]-->
<!--[if IE 7]>
<style type="text/css">
.red{
color:blue;
}
</style>
<![endif]-->
<!--[if IE 8]>
<style type="text/css">
.red{
color:green;
}
</style>
<![endif]-->

</head>
<body>
<span class="red">jop</span>

</body>
</html>

Edited by dostel1
Link to comment
Share on other sites

  • 0

http://www.mykhailenko.com/blog/2011-02-17/conditional-comments-4-ie.html

Вот пример мой!!открой в ие6 ие7 ие 8 и опера

спасибо. но у вас в html, мне интересно можно ли сразу в css код писать, и соответственно как это сделать, то есть как писать в файл с расширением .css, а не внедрять стили в html.

Link to comment
Share on other sites

  • 0

Зачем использовать хаки? Они же не все кросбраузерные, проще стиль например для ие7 поместить в отдельный файл css и присоединить его при помощи условных комментариев, так же и с ие6

Link to comment
Share on other sites

  • 0

Зачем использовать хаки? Они же не все кросбраузерные, проще стиль например для ие7 поместить в отдельный файл css и присоединить его при помощи условных комментариев, так же и с ие6

Согласен. Так и поступлю.

Еще хотел спросить, когда буду создавать отдельные css файлы под ие-шки, там нужно весь css код копировать, заменяя нужные строки или же только те строки, которые нужно заменить?

То есть например у меня есть css файл


#left {
width: 300px;
backgrdound: black;
}

#right {
width: 500px;
background: red;
}

Предположим мне надо, чтобы

в ie6 был для левого зеленый бэкгрануд, для правого желтый

Что тогда нужно было бы публиковать в файл ie6.css

Первое


#left {
width: 300px;
backgrdound: green;
}

#right {
width: 500px;
background: yellow;

или

Второе


#left {
backgrdound: green;
}

#right {
background: yellow;
}

Edited by Rustick
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