color, but not the text

This question already has an answer here:

  • How do I give text or an image a transparent background using CSS? 26 answers

  • Use 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)";
    }
    

    In addition to this, you have to declare background: transparent for IE web browsers, preferably served via conditional comments or similar!

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


    I use an alpha-transparent PNG for that:

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

    For IE6, you'd need to use a PNG fix (1, 2), though.


    I've created that effect on my blog Landman Code.

    What I did was

    #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>
    链接地址: http://www.djcxy.com/p/4814.html

    上一篇: 拉伸和缩放CSS背景

    下一篇: 颜色,但不是文字