Jump to content
  • 0

a:hover прописан для всех ссылок, но для класса img отдельно. И второй не работает


Mosya
 Share

Question

Прописал для всех ссылок a:hover свойство красного фона. Потом создал отдельный класс a.img, в котором находились изображения, чтобы под ними не появлялась эта красная полоса. Но она появляется несмотря ни на что.

Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0

все работает, только вот бордер еще обнулить нужно.

Но красной полоски и небыло. Может просто класс img линке не дописали?

<!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" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
a:hover {
background: #e02600;
color: #fff;
text-decoration: none;
border-bottom: #3f4f52 solid 1px;
}
a.img:hover {
background: none;
text-decoration: none;
border-bottom: 0;
}
</style>
</head>
<body>
<div>
<a href="#">asdf</a>
<a class="img" href="#"><img src="screen.jpg" width="50" height="50" alt="image description" /></a>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

а напоследок: как можно прописать то же самое, но без класса? То есть для любого img, который находится в a применить свойства. Пробовал a:hover > img {...}; a > img:hover {...}; a:hover img {...}; a img:hover {...}; но ничего не помогло.

Link to comment
Share on other sites

  • 0
а напоследок: как можно прописать то же самое, но без класса? То есть для любого img, который находится в a применить свойства. Пробовал a:hover > img {...}; a > img:hover {...}; a:hover img {...}; a img:hover {...}; но ничего не помогло.

Дык вам надо границу у ссылки отменить же. А тут обращение к картинке внутри ссылки. Разные вещи, нэ?

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