Jump to content
  • 0

help


amshegar
 Share

Question

почему не работает :( ?


<html>
<head>

<style type="text/css">

a:hover {
background-image: url(img/1111.png);
}

</style>

</head>
<body>

<table width="25%" border="1" align="center">
<tr>
<th width="12%"><a href="www.google.com"><img src="img/2222.jpg" width="75" height="35" /></a></th>
<th width="12%"><a href="www.google.com"><img src="img/2222.jpg" width="75" height="35" /></a></th>
</tr>
<tr>
<th width="12%"><a href="www.google.com"><img src="img/2222.jpg" width="75" height="35" /></a></th>
<th width="12%"><a href="www.google.com"><img src="img/2222.jpg" width="75" height="35" /></a></th>
</tr>
</table>

</body>
</html>

спасибо заранее!

Edited by amshegar
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Потому, что вы hover'ом меняете фон ссылки, но этого не видно, т.к. в ней изображение. Для того, что бы увидеть фон, в вашем случае, нужно убрать картинку и задать ссылке размеры. Тогда фон виден будет.

Link to comment
Share on other sites

  • 0

Да что тут объяснять. <a> это инлайновый элемент, т.е. он принимает размеры своего содержимого, в вашем случае <img>. Так вот a:hover background{...} меняет фон ссылки в котором картинка, но картинка полностью перекрывает ссылку и вы не можете на нее навести мышь, т.е. она, как бы, выше и заслоняет ссылку, понятно?

Пример:

div {width: 100px;height:100px;background-color: red} /*красный фон*/
div:hover {width: 100px;height:100px;background-color: yellow}/*при наведении мыши фон желтый*/
p {margin:0;padding:0;background:blue;width:100px;height:100px;}/*фон синий*/

<div></div>-фон меняется
<div><p></p></div>-фон не меняется, т.к. элемент p перекрыл своими размерами div

Доступней объяснить невозможно :mellow:

А вообще вот тут все написано

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