Jump to content
  • 0

Фоновый рисунок ссылки в 6 IE


AntonSolo
 Share

Question

Есть такой код:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>

<head>

<title>hover</title>

<style type="text/css">

ul {

margin:0;

padding:0;

}

li {

list-style-type: none;

display: inline;

padding:10px;

}

a {

text-decoration: none;

color:#000000;

}

a:hover {

background:url(menu-hover.gif) no-repeat;

background-position:bottom center;

}

</style>

</head>

<body>

ul>

<li><a href = "#">Первый</a></li>

<li><a href = "#">Второй</a></li>

<li><a href = "#">Третий</a></li>

</ul>

</body>

</html>

При наведение на ссылку появляется фоновый рисунок позиционированный по центру ссылки, но когда прописываю a{padding:8px}(8 это пример), любой padding, в 6 IE при наведении на ссылку фоновый рисунок уже не появляется. Если кто знает подскажите причину такого поведения в 6 IE. И второй вопрос а правильно ли с точки зрения корректности применять к элементу а фоновое изображение ?

Link to comment
Share on other sites

15 answers to this question

Recommended Posts

  • 0
Ссылки нету, это и есть весь код, я просто экспериментирую и возник вот такой вопрос. Или я что -то не ясно изложил ?

Мне неясен ховер-эфект, сможешь изобразить? :lol:

Link to comment
Share on other sites

  • 0

1) Да мне нужно увидеть саму картинку, которая при ховере происходит у тебя

2) Заметил следующую вещь, скопировав твой код обнаружил, что левая скобочка у UL отсутствует, это нормально?

ul>

<li><a href = "#">Первый</a></li>

<li><a href = "#">Второй</a></li>

<li><a href = "#">Третий</a></li>

</ul>

Link to comment
Share on other sites

  • 0
1) Да мне нужно увидеть саму картинку, которая при ховере происходит у тебя

2) Заметил следующую вещь, скопировав твой код обнаружил, что левая скобочка у UL отсутствует, это нормально?

ul>

<li><a href = "#">Первый</a></li>

<li><a href = "#">Второй</a></li>

<li><a href = "#">Третий</a></li>

</ul>

Да картинку любую, лишь бы она только отображалась, прикол в том что при hovere в 6 IE она перестанет работать вот пропиши вместо моего имени картинки любое своё имя картинки и увидишь результат, когда наводишь картинка отображается, а когда a{padding:10px} пропишишь, то перестанет работать. Касательно второго пункта это я просто описался, это не принципиально

Link to comment
Share on other sites

  • 0

ставлю падинг куда угодно, всё равно всё работает

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Задача по CSS</title>
<style type="text/css">
*{ margin: 0; padding:;}
ul {
margin:0;
padding:0;
}

li {
list-style-type: none;
display: inline;
padding:10px;

}

a {
text-decoration: none;
color:#000000;
padding: 10px;
}

a:hover {
background: url(children.jpg) no-repeat;
background-position:bottom center;
}
</style>
</head>

<body>

<ul>
<li><a href="#">Первый</a></li>
<li><a href="#">Второй</a></li>
<li><a href="#">Третий</a></li>
</ul>
</body>
</html>

Link to comment
Share on other sites

  • 0
ставлю падинг куда угодно, всё равно всё работает

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Задача по CSS</title>
<style type="text/css">
*{ margin: 0; padding:;}
ul {
margin:0;
padding:0;
}

li {
list-style-type: none;
display: inline;
padding:10px;

}

a {
text-decoration: none;
color:#000000;
padding: 10px;
}

a:hover {
background: url(children.jpg) no-repeat;
background-position:bottom center;
}
</style>
</head>

<body>

<ul>
<li><a href="#">Первый</a></li>
<li><a href="#">Второй</a></li>
<li><a href="#">Третий</a></li>
</ul>
</body>
</html>

И даже в 6 IE работает? Просто у меня ничего не поменялось

Link to comment
Share on other sites

  • 0

Надо было ссылке прописать display: block. Я гоню. это называется невнимательность из за которой много проблем, а как у вас мой код мог работать я не знаю))) Странно. Спасибо всем.

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