For a simple semi-transparent background color, the above solutions (CSS3 or bg images) are the best options. However, if you don't want to rely on CSS3 or want to do something fancier (e.g. animation, multiple backgrounds, etc.), you can try the “pane technique”:
<style type="text/css" media="all">
.pane, .pane > .back, .pane > .cont { display: block; }
.pane {
position: relative;
}
.pane > .back {
position: absolute;
width: 100%; height: 100%;
top: auto; bottom: auto; left: auto; right: auto;
}
.pane > .cont {
position: relative;
z-index: 10;
}
</style>
<p class="pane">
<span class="back" style="background: #0f0; opacity: 0.6;"></span>
<span class="cont">Pane lives here...</span>
</p>
The technique works by using two “layers” inside of the outer pane element:
- one (the “back”) that fits the size of the pane element without affecting the flow of content,
- and one (the “cont”) that contains the content and helps determine the size of the pane.
The position: relative on pane is important; it tells back layer to fit to the pane's size. (If you need the <p> tag to be absolute, change the pane from a <p> to a <span> and wrap all that in a absolutely-position <p> tag.)
The main advantage this technique has over similar ones listed above is that the pane doesn't have to be a specified size; as coded above, it will fit full-width (normal block-element layout) and only as high as the content. The outer pane element can be sized any way you please, as long as it's rectangular (i.e. inline-block will work; plain-old inline will not).
Also, it gives you a lot of freedom for the background; you're free to put really anything in the back element and have it not affect the flow of content (if you want multiple full-size sub-layers, just make sure they also have position: absolute, width/height: 100%, and top/bottom/left/right: auto).
One variation to allow background inset adjustment (via top/bottom/left/right) and/or background pinning (via removing one of the left/right or top/bottom pairs) is to use the following CSS instead:
.pane > .back {
position: absolute;
width: auto; height: auto;
top: 0px; bottom: 0px; left: 0px; right: 0px;
}
As written, this works in Firefox, Safari, Chrome, IE8+, and Opera, although IE7 and IE6 require extra CSS and expressions, IIRC, and last time I checked, the second CSS variation does not work in Opera.
Things to watch out for:
- Floating elements inside of the cont layer will not be contained. You'll need to make sure they are cleared or otherwise contained, or they'll slip out of the bottom.
- Margins go on the pane element and padding goes on the cont element. Don't do use the opposite (margins on the cont or padding on the pane) or you'll discover oddities such as the page always being slightly wider than the browser window.
- As mentioned, the whole thing needs to be block or inline-block. Feel free to use
<div>s instead of <span>s to simplify your CSS.
A live demo of the technique being used extensively can be found at:
Hope this helps.
p's opacity were.6and thespan's opacity were.5then the true opacity of the text in the span would be0.3. – TestSubject528491 Jan 3 '12 at 4:05