Jump to content
  • 0

ссылка PNG.-кой с прозрачным фоном, как сделать чтобы для нее не отображался атрибут hover из CSS


infinite8
 Share

Question

3 answers to this question

Recommended Posts

  • 0

Буду придираться к формулировкам. Атрибута hover нет. Атрибутов в CSS нет. Есть псевдокласс hover. Псевдоклассы не отображаются. Отображается результат добавления визуальных свойств CSS.

Начнём с начала. Что надо сделать?

Link to comment
Share on other sites

  • 0

извиняюсь за формулировки, совсем не разбираюсь в этих делах, но методом тыка все-таки решил проблему.

было в CSS прописано следующее:

a:link { text-decoration: none; color: #fff; }

a:active { text-decoration: none; }

a:visited { text-decoration: none; color: #fff; }

a:hover { none; color: #000; background: #fff; }

Но при этом помимо текстовых ссылок, были (есть) картинки формата PNG с прозрачным фоном, т.е. при наведении курсора, за PNG, появлялся фон, что совсем некстати.

Решил проблему таким образом (плюсом еще одно украшательство добавил): в CSS

#pics a {

display:block;

width: 100px;

height: 100px;

background: url(http://sitename. ru/pic_1.png) no-repeat;

}

#pics a:hover {

display:block;

width: 100px;

height: 100px;

background: url(http://sitename. ru/pic_2.png) no-repeat;

}

в HTML: <div id="pics"><a href="http://sitename. ru"></a></div>

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