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

Jeremy Coleman
Jeremy Coleman
5,449 Points

Centering Divs with Headers

I am a bit confused with this I am wanting the 3 divs with col class to center in the middle of the page but it's not working.

        <div class="main-cont">
            <div class="col">
                <h1>Col 1</h1>
            </div>

            <div class="col">
                <h1>Col 2</h1>
            </div>

            <div class="col">
                <h1>Col 3</h1>
            </div>
        </div>
main-cont > .col {
  width: 250px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
} 

Thanks, I figured it out!

2 Answers

Jeff Lemay
Jeff Lemay
14,268 Points

You're missing a period before main-cont in your css so you aren't actually targeting anything.

.main-cont > .col {
  width: 250px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
} 

It may be: .main-cont .col { width: 250px; display: inline-block; text-align: center; margin: 0 auto; }