Jump to content
  • 0

Убрать прозрачность дива


kirhost.com
 Share

Question

Здравствуйте такая вот проблема.

Есть основной див залитый цветом на котором стоит:

opacity: 0.75;
-moz-opacity: 0.75;
filter:alpha(opacity=75);

Сверху идет следующий див но уже с ПНГ на которой тоже переходит прозрачность.

Скажите как убрать прозрачность с дива в котором ПНГ.

Спасибо

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0
Здравствуйте такая вот проблема.

Есть основной див залитый цветом на котором стоит:

opacity: 0.75;
-moz-opacity: 0.75;
filter:alpha(opacity=75);

Сверху идет следующий див но уже с ПНГ на которой тоже переходит прозрачность.

Скажите как убрать прозрачность с дива в котором ПНГ.

Спасибо

Сделать вместо ПНГ другое расширение, с прозрачными на 100% или полностью непрозрачными фрагментами или же всю площадь.

Link to comment
Share on other sites

  • 0
В этой ПНГ логотип с прозрачным фоном, другим не заменить. Нужно чтобы именно элементы логотипа не просвещались.

Ну раз нужно, тогда будем ждать ответа, который Вас обнадежит или сами делайте.

Link to comment
Share on other sites

  • 0

прозрачность наследуется и это никак не отменить

сделайте полупрозрачный фон отдельным дивом, чтобы логотип не был дочерним у этого дива

или еще вариант: используйте вместо свойств прозрачности png с нужным коэффициентом прозрачности, но будут проблемы с ИЕ

Link to comment
Share on other sites

  • 0

CSS

#header {
position:relative;
height: 265px;
background: #0000ff;
opacity: 0.75;
-moz-opacity: 0.75;
filter:alpha(opacity=75);
}
#logo {
position:absolute;
float:left;
opacity: 1;
-moz-opacity: 1;
filter:alpha(opacity=100);
}

HTML

<div id="header">
<div id="logo"><img src="images/logo.png" width="543" height="161" border="0" alt="" />
</div>
</div><!-- #header-->

Link to comment
Share on other sites

  • 0

и что вы этим хотите сказать?

сделайте полупрозрачность у logo а не у header и закройте logo до img, ну и размеры ему задайте

а зачем там float если блок абсолютно позиционирован?

Link to comment
Share on other sites

  • 0

во-первых я уже вам 2 раза объяснил как исправить

во-вторых все наследуется, только прозрачность у дочернего элемента отсчитывается от родительского. 100% от 75% сколько будет?

Link to comment
Share on other sites

  • 0

Проблема решена:

CSS

#top{
position: relative;
width: 100%;
height: 265px;
}

#header {
position: absolute;
width: 100%;
height: 100%;
background-color: #0000ff;
opacity: 0.75;
-moz-opacity: 0.75;
filter:alpha(opacity=75);
}
#logo {
position:absolute;
background-image:url(images/logo.png);
width: 543px;
height: 161px;

}

HTML

<div id="top">
<div id="header"> </div><!-- #header-->
<div id="logo"></div>
</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