Jump to content
  • 0

Сделать


artwalek
 Share

Question

Имею CSS такого вида:

#menu a
{
text-decoration: none;
text-align: left;
color: #01367C;
display: block;
padding: 0.7em 0.7em 0.7em 1.5em;
border-bottom-color: #99CCFF;
border-bottom-style: solid;
border-bottom-width: 1px;
margin-left: 5px;
font-size: 8pt;
}

И html:

<div id="menu">

<a href="/Info/Articles/Page.asp?ID=6530"></a>

<a href="/Info/Articles/Page.asp?ID=6531"></a>

<a href="/Info/Articles/Page.asp?ID=6532"></a>

<a href="/Info/Articles/Page.asp?ID=6533"></a>

</div>

Поскольку в #menu a указан display: block, можно ли сделать #menu a:visited для каждой ссылки а не целиком сразу, т.е. если прописать #menu a:visited {color: red;} то в красный окрашутся сразу все ссылки. Можно ли указать #menu a:visited не прибегая к прописыванию стиля для каждой ссылки?

Надеюсь выразился ясно. :)

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
Т.е. вам нужно, что-бы все посещенные ссылки имели разные цвета?

Не совсем.

Мне нужно чтобы дочерние элементы <a> при клике раскрашивались например в красный цвет.

Почему не работает вот так:

div#menu > a:active
{
font-size: 8pt;
color: red;
}

PS: Прошу прощения, неправильно указал в теме, не a:visited, a:active

Edited by artwalek
Link to comment
Share on other sites

  • 0
Не совсем.

Мне нужно чтобы дочерние элементы <a> при клике раскрашивались например в красный цвет.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>The name</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
#menu a
{
text-decoration: none;
text-align: left;
color: #01367C;
display: block;
padding: 0.7em 0.7em 0.7em 1.5em;
border-bottom-color: #99CCFF;
border-bottom-style: solid;
border-bottom-width: 1px;
margin-left: 5px;
font-size: 8pt;
}
#menu a:active
{
color: red;
}
</style>
</head>
<body>
<a href="#" title="#">Ссылка не в блоке</a>
<div id="menu">
<a href="#" title="#">Главная</a>
<a href="#" title="#">О сайте</a>
</div>
</body>
</html>

Вот так у меня работает нормально везде.

div#menu > a:active
{
font-size: 8pt;
color: red;
}

Так должно работать везде, кроме осла 6.0 и <.

А вот с visited, сам не пойму, какого черта вместо одной ссылки окрашиваются все лежащие в блоке...

Я понял, в чем проблема с Visited (в моем коде). Просто URL у ссылок один и тот-же, поэтому браузер думает, что обе ссылки посещались. А в вашем, все должно нормально работать, и работает.

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