Jump to content
  • 0

#id.class


warobushek
 Share

Question

5 answers to this question

Recommended Posts

  • 0

Вполне себе рабочие конструкции:

div.align-center

#some-id.align-center

И вовсе не глупо, зачастую облегчает жизнь за счет расширения пространства имен в стиля без расширения пространства имен в хтмл.

Link to comment
Share on other sites

  • 0

Рабочие конечно, но тем кто еще поддерживает ие6 (наша контора в частности), нужно знать одну особенность поведения ие6.

Посмотрите и сравните два кода:

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>#id.class</title>
<style type="text/css">
#wrapper{
height:100px;
background:#0ff;
}
#wrapper.blue{
background:#00f;
}
#wrapper.red{
background:#f00;
}
</style>
</head>
<body>
<div id="wrapper" class="red">

</div>
</body>
</html>

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>#id.class</title>
<style type="text/css">
#wrapper{
height:100px;
background:#0ff;
}
#wrapper.blue{
background:#00f;
}
#wrapper.red{
background:#f00;
}
</style>
</head>
<body>
<div id="wrapper" class="blue">

</div>
</body>
</html>

Тоесть в цсс стили для селектора #id.class допускаеться только один раз, если добавить #id.class2 то ие6 проигнорит правила для второго селектороа ( #id.class2)

Это на заметку тем кому по неволе приходится еще мириться с ие6 (как мне :lol:)

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