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

Learning coding
Front End Web Development Techdegree Student 9,937 PointsHow do I remove the horizontal scrollbar?
How dit i create the horizontal scrollbar and how get i remove it? Anyone? Thanks in advance!
1 Answer

Shahzaib Awan
13,767 Pointsto hide scroll use css property overflow-x: hidden; similarly use overflow-x: scroll; to show it again. Remember overflow-x represent horizontal scroll and overflow-y represent vertical scroll.
Learning coding
Front End Web Development Techdegree Student 9,937 PointsLearning coding
Front End Web Development Techdegree Student 9,937 PointsAwesome, that worked. I recognized this property, I used it for another application. Thanks.