Jump to content
  • 0

Цвет подчёркивания ссылки


people2010
 Share

Question

Не могу сделать цвет подчёркивания красным так, чтоб цвет букв остался розовым.

Пишу такое.

Файл css:

A.menu1:link{text-decoration:none; /*Убираем линию подчёркивания*/
color:blue;
}
A.menu2:visited{color:red; text-decoration:none;} /*Посещённая ссылка*/

A.menu4:hover{color:magenta; background:#99ffff;text-decoration:underline;
font-style:normal; font-weight:bold;
letter-spacing:2px; font-size:11pt;}

A.menu3:hover{color:red; text-decoration:underline;}

A.menu5:active{color:yellow; background:red;}

фАйл HTML

<a class="menu1 menu2 menu3 menu4 menu5 "  href="#ona">Перейти в низ</a> 

<a name="ona">Текст</a>

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

<!DOCTYPE HTML>

<title>Цвет подчеркивания</title>

<style type="text/css">
a {
color: #3f3;
}
a span {
color: #f33;
}
</style>

<a href="#"><span>Текст ссылки<span></a>

Чтобы это было честным подчеркиванием, на том же уровне, что и у другого текста.

Link to comment
Share on other sites

  • 0
<!DOCTYPE HTML>

<title>Цвет подчеркивания</title>

<style type="text/css">
a {
color: #3f3;
}
a span {
color: #f33;
}
</style>

<a href="#"><span>Текст ссылки<span></a>

Чтобы это было честным подчеркиванием, на том же уровне, что и у другого текста.

Я тоже думал про этот вариант, но подумал приберечь его на случай, если ТС не понравиться вариант с бордером)

Link to comment
Share on other sites

  • 0

people2010

CSS

a.menu:link{text-decoration:none; color:blue;}
a.menu:visited{color:red;}
a.menu:hover{color: magenta; background:#99ffff; border-bottom: 1px solid red; font-style:normal; font-weight:bold; letter-spacing:2px; font-size:11pt;}
a.menu:active{color:yellow; background:red;}

HTML

<a class="menu" href="#ona">Перейти в низ</a> 
<a name="ona">Текст</a>

Link to comment
Share on other sites

  • 0

Вы меня не поняли, мне не нужно чтоб не везде была рамка красная, мне только в низу крассная, код не работает.

A.menu1:link{text-decoration:none; /*Убираем линию подчёркивания*/
color:blue;
}
A.menu2:visited{color:red; text-decoration:none;} /*Посещённая ссылка*/

A.menu3:hover{color:magenta; background:#99ffff;text-decoration:underline;
font-style:normal; font-weight:bold;
letter-spacing:2px; font-size:11pt;
border-bottom:1px; border-color:red;
border-style:solid;
}

A.menu4:active{color:yellow; background:red;}

<a class="menu1 menu2 menu3 menu4  "  href="#ona">Перейти в низ</a> 

<a name="ona">Текст</a>

Получится такое фото, каоке выше, после такого кода.

Edited by people2010
Link to comment
Share on other sites

  • 0

people2010

Смотри, вот этот участок

border-bottom:1px; border-color:red;
border-style:solid;

Ты задаешь ширину нижней границы 1 px, далее у тебя идут свойства для всех четырех границ, отсюда у тебя весь текст отобажается в рамке.

Нужно прописывать border-bottom-width:1px; border-bottom-color:red; border-bottom-style:solid;

или сокращенно border-bottom: 1px solid red;

Также тебе нужно убрать нижнее подчеркивание у ссылки, т.е. вместо text-decoration:underline; нужно text-decoration: none;

Также, нет необходимости назначать столько классов одной ссылке. Смотри выше http://forum.htmlbook.ru/index.php?showtop...st&p=145016 или http://forum.htmlbook.ru/index.php?showtop...st&p=145011

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