Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Darrel Lyons
Darrel Lyons
2,991 Points

Container + image

So i've put a background image in my container but when i'm trying to change the opacity of the image, the writing in the container div is also changing opacity. Is there a way to change the opacity of the background image without the writing changing?

2 Answers

You could also try the pseudo hack.

.element {
   position:relative;
   z-index:1;
}

.element:before {
   content:"";
   position:absolute;
   z-index:-0;
   top:0;
   bottom:0;
   left:0;
   right:0;
   background:url("path-to-image.jpg");
   opacity:0.5;
}

Source

Check out this solution.