391

如何使跨浏览器(包括Internet Explorer 6)的背景透明一段div时间,文本仍然不透明?

我需要在不使用任何库(如 jQuery 等)的情况下做到这一点(但如果你知道一个库可以做到这一点,我很想知道,所以我可以查看他们的代码)。

4

5 回答 5

604

使用 rgba!

.alpha60 {
    /* Fallback for web browsers that don't support RGBa */
    background-color: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
    background-color: rgba(0, 0, 0, 0.6);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

除此之外,您必须background: transparent为 IE 网络浏览器声明,最好通过条件注释或类似方式提供服务!

通过http://robertnyman.com/2010/01/11/css-background-transparency-without-affecting-child-elements-through-rgba-and-filters/

于 2011-01-17T20:34:05.530 回答
32

我为此使用了一个透明的 PNG:

div.semi-transparent {
  background: url('semi-transparent.png');
}

不过,对于 IE6,您需要使用 PNG 修复程序(12)。

于 2009-03-12T09:53:05.550 回答
16

我在我的博客Landman Code上创建了这种效果。

我所做的是

#Header {
  position: relative;
}
#Header H1 {
  font-size: 3em;
  color: #00FF00;
  margin:0;
  padding:0;
}
#Header H2 {
  font-size: 1.5em;
  color: #FFFF00;
  margin:0;
  padding:0;
}
#Header .Background {
  background: #557700;
  filter: alpha(opacity=30);
  filter: progid: DXImageTransform.Microsoft.Alpha(opacity=30);
  -moz-opacity: 0.30;
  opacity: 0.3;
  zoom: 1;
}
#Header .Background * {
  visibility: hidden; // hide the faded text
}
#Header .Foreground {
  position: absolute; // position on top of the background div
  left: 0;
  top: 0;
}
<div id="Header">
  <div class="Background">
    <h1>Title</h1>
    <h2>Subtitle</h2>
  </div>
  <div class="Foreground">
    <h1>Title</h1>
    <h2>Subtitle</h2>
  </div>
</div>

重要的是,每个填充/边距和内容在 .Background 和 .Foreground 中都必须相同。

于 2009-03-12T10:42:11.763 回答
13

放宽在 IE6 和旧版浏览器上工作的要求,您可以使用 ::before 和 display: inline-block

div
{
  display: inline-block;
  position: relative;    
}
div::before
{
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background:red;
  opacity: .2;
}

演示在http://jsfiddle.net/KVyFH/172/ ​</p>

它适用于任何现代浏览器

于 2012-08-21T13:12:01.160 回答
0

感谢 @davy-landmann 提供https://stackoverflow.com/a/638064/417153。这就是我要找的!与 LESS 代码相同的效果:

  @searchResultMinHeight = 200px;
  .searchResult {
    min-height: @searchResultMinHeight;

    position: relative;
    .innerTrans {
      background: white;
      .opacity(0.5);
      min-height: @searchResultMinHeight;
    }
    .innerBody {
      padding: 0.5em;
      position: absolute;
      top: 0;
    }
  }
于 2012-10-04T20:47:42.510 回答