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 trialRalph Otowo
Python Development Techdegree Student 2,311 PointsStuck on a CSS Level
I can't get pass this level. I tried creating two divs and using the images as backgrounds in the stylesheet, but I still get an error to check the background values. Help is appreciated.
2 Answers
Ali M Malik
33,293 PointsI think you misunderstood the question. It wants you to do it via multiple css backgrounds, not multiple divs. Basically what the video before it was showing you. No need to touch the html, here's what the css looks like:
.sketch {
background: url('img/pencil.png') no-repeat left bottom,
url('img/smiley.png') no-repeat right top,
url('img/texture.jpg') #EED293;
}
Ralph Otowo
Python Development Techdegree Student 2,311 PointsThank you, Ali :)