By Nicholas Cerminara and Andy Hattemer
opacity
is a CSS property that allows you to change the opaqueness of an element. By default, all elements have a value of 1
. By changing this value closer to 0
, the element will appear more and more transparent.
A common use case is using an image as part of the background. Adjusting the opacity can improve the legibility of text or achieve the desired appearance. However, there is no way to target the background-image
of an element with opacity
without affecting the child elements.
In this article, you will be presented with two methods to work around this limitation for background images with opacity.
If you would like to follow along with this article, you will need:
opacity
.position: relative
and position: absolute
.z-index
:before
and :after
pseudo-elements.The first approach will rely upon two elements. One is a “wrap” that provides a point of reference with position: relative
. The second is an img
element that appears behind the content with position: absolute
and stacking context.
Here is an example of the markup for this approach:
<div class="demo-wrap">
<img
class="demo-bg"
src="https://assets.digitalocean.com/labs/images/community_bg.png"
alt=""
>
<div class="demo-content">
<h1>Hello World!</h1>
</div>
</div>
And here are the accompanying styles:
.demo-wrap {
overflow: hidden;
position: relative;
}
.demo-bg {
opacity: 0.6;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: auto;
}
.demo-content {
position: relative;
}
This markup and styles will produce a result with text on top of an image:
The parent demo-wrap
<div>
establishes an absolute positioning containing block. The demo-bg
<img>
is set to position: absolute
and assigned a slight opacity
. The demo-content
<div>
is set to position: relative
and due to how the markup is arranged it has a higher stacking context than demo-bg
. It is also possible to use z-index
for finer control over the stacking context.
There are some limitations to this approach. It assumes that your image is large enough to accomodate the size of any element. You may need to enforce size limitations to prevent an image from appearing cut off or not covering the entire height of an element. It will also require additional adjustments if you want to control the “background position” and no clean “background repeat” alternative.
The second approach will rely upon pseudo-elements. The :before
and :after
pseudo-elements are available to most elements. Typically, you would provide a content
value and use it to append extra text at the beginning or end. However, it is also possible to provide an empty string and then you can utilize the pseudo-elements for designs.
Here is an example of the markup for this approach:
<div class="demo-wrap">
<div class="demo-content">
<h1>Hello World!</h1>
</div>
</div>
And here are the accompanying styles:
.demo-wrap {
position: relative;
}
.demo-wrap:before {
content: ' ';
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.6;
background-image: url('https://assets.digitalocean.com/labs/images/community_bg.png');
background-repeat: no-repeat;
background-position: 50% 0;
background-size: cover;
}
.demo-content {
position: relative;
}
This markup and styles will produce a result with text on top of an image:
The parent demo-wrap
<div>
establishes an absolute positioning containing block. The pseudo-element :before
is set to position: absolute
, assigned a slight opacity
, and uses background-size: cover
to occupy all the available space.
This approach has the advantage of support for other background
properties like background-position
, background-repeat
, and background-size
. This approach has the disadvantage of using one of the pseudo-elements which may conflict with another design effect - like a clearfix solution.
In this article, you learned about two methods to work around this limitation for background images with opacity.
If you’d like to learn more about CSS, check out our CSS topic page for exercises and programming projects.
Want to deploy your application quickly? Try Cloudways, the #1 managed hosting provider for small-to-medium businesses, agencies, and developers - for free. DigitalOcean and Cloudways together will give you a reliable, scalable, and hassle-free managed hosting experience with anytime support that makes all your hosting worries a thing of the past. Start with $100 in free credits!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi, this was really helpful but I have one question. What is the use of the “content:’ '” line in the pseudoelement?