Jump to content
  • 0

Приоритет стилей


RR
 Share

Question

В одном блоке div#box располагается 30 ссылок. Из них 27 имеют стиль a.blue { color:blue; } и 3 ссылки имеют стиль a.red { color:red; } . Если устанавливаю контекстный селектор вида div#box a { color:blue; }, то потом ни как не могу переориентировать оставшиеся 3 ссылки на стиль a.red. С этим можно что-нибудь сделать или только прописывать каждой ссылке свой класс? Спасибо!

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Это приоритеты. :)

Приоритет свойств класса будет выше приоритета элемента. А приоритет идентификатора ещё выше.

Попробуйте сами:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1251" />
<link rel="shortcut icon" href="favicon.ico" />
<title></title>
<style type="text/css">
#d {
color:yellow;
}
div {
color:red;
}
.d {
color:green;
}
</style>
</head>
<body>
<div class="d" id="d">sdd<span class="s" id="s"></span></div>
</body>
</html>

Применительно к вашей задаче: пропишите вместо a.blue #box a.blue или добавьте к свойствам a.blue !important

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