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
Lori Smith
1,409 PointsFull page background color behind background image.
I'm trying to have a full page background color behind my background image (height: 300px) as well as the rest of the page content. What is the best way to do this?
2 Answers
Lachlan ∆
8,026 PointsCSS:
background-color: #ffffff;
HTML:
<img src="imagelocation" alt="" width="" height="300">
Give this a shot good luck!
Leyton Parker
6,556 Pointsyou'll want to stack the image on top of the color by doing this (example). You are using CSS cascading nature to stack the color and img.
background-color: #fff;
background-image: img;