Jump to content
  • 0

Чего не хватает для работы а:hover


piryaz
 Share

Question

Не работает в ФФ, Опера. В ИЕ 6 все окей.

ul li {

font-family: Arial, Helvetica, sans-serif;

font-size: 15px;

line-height: 20px;

text-decoration: none;

list-style-image: url(img/bullet.gif);

}

li a {

font-family: Arial, Helvetica, sans-serif;

color: #4C4D4F;

text-decoration: none;

}

li a:hover{

list-style-image: url(img/bullet_grey.gif);

}

li a:visited{

color: #666666;

}

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

visited будет работать, потому что для таких элементов вы устанавливаете только цвет текста. Цвет текста для ссылок установить можно.

Для hover вы пытаетесь изменить свойство list-style-image, которое применяете к ссылке, однако это свойство можно устанавливать только для списков и их элементов.

Если вы зададите

li:hover{
list-style-image: url(img/bullet_grey.gif);
}

то это должно будет сработать везде, кроме IE 6.

Link to comment
Share on other sites

  • 0
list-style-image надо применять к <ul> а не к <a>

ul {

list-style-image: url(img/bullet_grey.gif);

}

Тогда это будет распространяться на все элементы списка, а нам, как я понимаю, нужно отметить тот, на который навели указатель.

Этот стиль работает и для отдельных элементов списка.

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