Jump to content
  • 0

разный a:link, a:visited для разных блоков


novicheG
 Share

Question

Добрый день!

Подскажите пожалуйста с такой небольшой заморочкой:

Если задавать стиль a:link, a:visited для всех ссылок одного из блоков в документе (.block1 a:link, a:visited {}) то он(стиль) распространяется на все остальные ссылки и других блоков тоже (причем, что самое главное, не являющихся дочерними этого блока).

Как видно из примера(см. ниже) .right a:link, a:visited {color: green;} - перекрывает color: red; для .left (хотя по идеи 2 блока сестринские - не вложены друг в друга)

Вопрос: как задать a:link, a:visited для всего конкретного блока? (естественно не шпигуя классы к каждой из ссылок блока (в этом случае конечно работает))

Код
<!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" lang="ru">

<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<title>An XHTML 1.0 Strict standard template</title>

<style type="text/css">

.left, .right {

margin-top: 20px;

padding: 10px;

border: 1px solid #2e2e2e;

}

#div.left a:link, a:visited {

color: red;

font: normal 13px Arial;

text-decoration: none;

letter-spacing: 2px;

}

#div.right a:link, a:visited {

color: green;

}

</style>

</head>

<body>

<div class="left">

<a class="right1" href="#">Ссылка1</a></br>

<a href="#">Ссылка2</a></br>

<a href="#">Ссылка3</a></br>

<a href="#">Ссылка4</a></br>

<a href="#">Ссылка5</a></br>

</div>

<div class="right">

<a href="#">Ссылка1</a></br>

<a href="#">Ссылка2</a></br>

<a href="#">Ссылка3</a></br>

<a href="#">Ссылка4</a></br>

<a href="#">Ссылка5</a></br>

</div>

</body>

</html>

53cd66b274f5.gif

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Код
<style type="text/css">

.left, .right {

margin-top: 20px;

padding: 10px;

border: 1px solid #2e2e2e;

}

div.left a:link, div.left a:visited {

color: red;

font: normal 13px Arial;

text-decoration: none;

letter-spacing: 2px;

}

div.right a:link, div.left a:visited {

color: green;

}

</style>

Link to comment
Share on other sites

  • 0

Цитата
Код
<style type="text/css">

.left, .right {

margin-top: 20px;

padding: 10px;

border: 1px solid #2e2e2e;

}

div.left a:link, div.left a:visited {

color: red;

font: normal 13px Arial;

text-decoration: none;

letter-spacing: 2px;

}

div.right a:link, div.right a:visited { // только тут div.right - конечно?

color: green;

}

</style>

Тьфу, блин, стыдобища... так просто оказалось.. deadrash Спасибо :)

Edited by novicheG
Link to comment
Share on other sites

  • 0

Просто чуточку повнимательней и отдыхать надо периодически. :)

Код
div.right a:link, div.right a:visited { // только тут div.right - конечно?

Ага, скопипастил и отправил, тоже нужно отдохнуть минут-полчаса =))

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