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

CSS

How to delete white spaces around the header and avoid horizontal scrollbar.

Hello. In how to make a website course my code is almost the same with teacher's code. But I get white space around the header and horizontal scrollbar. How to solve the problem?

How to add code or code file?

1 Answer

you can use

 word-wrap: break-word;

for avoiding horizontal scroll bar

 body{
  overflow-x:hidden;
}

"word-wrap" doesnt change anything. I think "overflow-x" is hacking, not solution. How to post code here? Thank you!