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 Bootstrap 4 Basics (Retired) Getting to Know Bootstrap 4 Enhancing the Page

Horizontal Scroll for H1 at 34em Breakpoint

I noticed that at smaller sizes (below the 34em breakpoint), using the .display-1 class for the h1 tag resulted in a horizontal scrollbar.

I added stylesheet with the following rule that appeared to resolve this issue. Not sure if anyone else had this issue:

@media screen and (max-width: 34em) {
      h1.display-1 {
         font-size: 3.25rem;
     }
}