Jump to content
  • 0

псевдоклассы


DivMan
 Share

Question

Почему при наведении мышкой на ссылку, она не красится в красный цвет?


<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Пример CSS</title>
<style type="text/css">
body{
backgound-color:#ffffff;
}
a{
font-family:arial, verdana, sans-serif;
font-size:12px;
font-weight:bold;
}
a:link{
color:#0000ff;
text-decoration:none;
}
a:visited{
color:#333399;
text-decoration:none;
}
a:active{
color:#0033ff;
text-decoration:underline;
}
a:hover{
backgound-color:#ff0000;
text-decoration:underline;
}
</style>
</head>
<body>
<h1>Стили ссылок</h1>
<p>В примере содержится несколько ссылок, с которыми вам<br>
рекомендуется поэксперементировать, чтобы увидеть их в действии:</p>
<ul>
<li><a href="http://www.wrox.com">Сайт Wrox</a> рассказывает о вышедших и готовящихся
к печати издательства Wrox.</li>
<li>На <a href="http://www.w3.org/">сайте Консорциума W3C</a> содержаться рекомендации, касающихся
XHTML и CSS.</li>
<li><a href="https://www.google.ru">Сайт Google</a> - это популярный поисковик, который
поможет найти ответы на любые вопросы.</li>

</ul>
</body>
</html>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

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