Jump to content
  • 0

задание двух и более классов элементу


sum41
 Share

Question

столкнулся с такой проблемой:

пишем в css:

.imp {color:green;}

.cent {background:#f90;}

.imp.cent {border:2px solid red;}/*ставится красная рамка при одновременном использовании классов imp и cent */

в html:

<p class="imp">Сonsectetuer adipiscing elit, sed diam nonummy</p>

<p class="cent">Сonsectetuer adipiscing elit</p>

<p class="cent imp">Сonsectetuer adipiscing elit</p>

в первом случае будет параграф с зеленым текстом.

во втором параграф с оранжевым background'ом.

а в третьем получится параграф с зеленым текстом, оранжевым background'ом и по правилам css добавляется

красная рамка.

но всеми любимый IE6 по-своему воспринимает правило .imp.cent {border:2px solid red;}

он игнорирует .imp и расценивает это правило так же как просто

.cent {border:2px solid red;}.

в итоге в нормальных браузерах все отображается как надо, а IE6 добавит красную рамку еще и

ко второму параграфу. чего естественно не должно быть.

кто-нибудь знает какие-нибудь хаки для решения этой проблемы в IE6?

задание одновременно двух классов обязательно <p class="cent imp">

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

ну ясно значит хаков для такой ситуации нету.

а на Javascript я эту проблему решил.

кому интересно вот скрипт:

function repclaceLi() {
if (navigator.appVersion.indexOf("MSIE 6.0") != -1) {
var ul_menu = document.getElementById('other_menu').firstChild
for (var i=0; i < ul_menu.childNodes.length; i++) {
switch (ul_menu.childNodes(i).className) {
case 'first active':
ul_menu.childNodes(i).className = "activefirst"
break
case 'last active':
ul_menu.childNodes(i).className = "activelast"
break
}
}
}
}

<body onload="repclaceLi()">

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