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

Kelvin Atawura
Front End Web Development Techdegree Student 19,022 Pointswhats the css property for making one image appear infront of the other?
whats the css property for making one image appear infront of the other?
2 Answers

Craig Watson
27,930 PointsHi Kelvin,
The way to order your images is through the Z-Index.
.front-image {
z-index: 100;
}
.back-image {
z-index: 10;
}
The front image MUST have the highest number!
Hope this helps, Criag

Kelvin Atawura
Front End Web Development Techdegree Student 19,022 Pointsthanks guys
Johnatan Guzman
Courses Plus Student 2,360 PointsJohnatan Guzman
Courses Plus Student 2,360 Pointsz-index: [number] // the highest number gets in front