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

Nodirbek Ismailov
5,545 Pointsplease explain the rectangular picture of the city on background of web page, where the coding of it?
html document, coding, CSS
2 Answers

Steven Parker
241,434 PointsIn "styles.css" on line 57 there is a "background" attribute applied to the "header" element. This is what displays the image of the city.
header {
text-align: center;
background: url('images/portland.jpg') no-repeat top center; /* <-- this line */
background-size: cover;
overflow: hidden;
padding-top: 60px;
}

Karina Soares
1,052 PointsThank you for sharing!
Nodirbek Ismailov
5,545 PointsNodirbek Ismailov
5,545 PointsThank you very much Steven!