Jump to content
  • 0

Смена цвета ссылки при наведении курсора


Гайдамак
 Share

Question

Помогите, пожалуйста:

Если я все правильно понимаю, то вот такой код в CSS

a.lang:link {
color: #CDC8B1;
text-decoration:underline;
}
a.lang:hover {
color: #363636;
text-decoration:none;
}
a.lang:visited {
color: #CDC8B1;
}

должен для ссылки <a class="lang" href="../eng" title="English version">ENG</a> при наведении курсора менять цвет и убирать подчеркивание. Не понимаю, почему цвет не меняется (хотя должен), а подчеркивание убирается (как и нужно). Подскажите, пожалуйста, где я ошибся.

Спасибо.

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
Помогите, пожалуйста:

Если я все правильно понимаю, то вот такой код в CSS

a.lang:link {
color: #CDC8B1;
text-decoration:underline;
}
a.lang:hover {
color: #363636;
text-decoration:none;
}
a.lang:visited {
color: #CDC8B1;
}

должен для ссылки <a class="lang" href="../eng" title="English version">ENG</a> при наведении курсора менять цвет и убирать подчеркивание. Не понимаю, почему цвет не меняется (хотя должен), а подчеркивание убирается (как и нужно). Подскажите, пожалуйста, где я ошибся.

Спасибо.

Приведенный код работает в FF3, IE7

Link to comment
Share on other sites

  • 0

s0rr0w

Victor Ananiev

Большое спасибо за готовность помочь!

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

Ссылка <a class="lang" href="../eng" title="English version">ENG</a> находилась в ячейке таблицы <td class="img">, для которой был установлен ненужный для этой ячейки font-family: tahoma. Убрав font-family я обнаружил, что ссылка меняет цвет как нужно. Странно.

Link to comment
Share on other sites

  • 0

Ничего не понимаю, на компе работает, обновляю сайт - не работает.

:hover после :visited поставил.

HTML

	<div class="menu">
<table cellspacing="2" cellpadding="0">
<tr>
...
<td class="img" colspan="3" valign="middle" align="center">
<p class="lang">UKR | <a class="lang" href="../eng" title="English version">ENG</a></p></td>
</tr>
</table>
</div>

CSS

div.menu {
padding: 0;
margin: 0;
background-color: #FFF;
width: 100%;
}
p.lang {
padding: 0;
margin: 0;
background: #FFF;
width: 100%;
font-family: Tahoma;
font-size: 9px;
text-align: center;
}
a.lang:link {
color: #363636;
text-decoration:underline;
}
a.lang:visited {
color: #363636;
}
a.lang:hover {
color: #CDC8B1363636;
text-decoration:none;
}
table {
width: 100%;
}
td.img {
border: 1px solid #CDC8B1;
}

Edited by Гайдамак
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