Jump to content
  • 0

ie7, фоновое png, ссылки над ним не работают


theo_
 Share

Question

Есть некоторый div, который абсолютно спозиционирован относительно body

Т.е. он всегда в правом верхнем углу экрана

В этом диве в качестве фона используется png-шка

В блоках, которые располагаются поверх этого изображения, присутствуют ссылки

Так вот в ие7 и ниже они не работают, отображаются, но ховера нет

В чем может быть причина?

Помогите разобраться

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

фильтры не применял для ие6?

Думаю что ты для того чтобы в ие6 нормально отображалось пнг - применял фильтры. Но условие кондишинал коментс захватил ие7 и ниже, или вообще все ие.

К блоку с позиционированием отличным от position:static нельзя применять фильтр (filter:progid:dximagetransform.microsoft.alphaimageloader)

Edited by mishka2
Link to comment
Share on other sites

  • 0

В данном случае нужен дополнительный див-обертка, а также установить position: relative; для ссылок.

Пример:

<div class="logo">
<div>
<a href="#"></a>
</div>
</div>

.logo { position: absolute; left: 142px; top: 120px; }
.logo DIV { width: 45px; height: 44px; background: url(../images/logo.png) no-repeat 0 0; }
.logo A { position: relative; display: block; width: 45px; height: 44px; }

CSS для ИЕ6:

.logo DIV { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/logo.png,sizingMethod=crop); //background: none; }

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