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 Framework Basics Prototyping with Bootstrap Build with Grids

Thomas Beaudry
Thomas Beaudry
29,084 Points

Can someone help me with this code challenge?

Unfortunately I cannot post my actual code I've written due to my devices browser. : <div class= "row"> I must be leaving something out? Thanks for ur help!!

1 Answer

Krzysztof Kucharzyk
seal-mask
.a{fill-rule:evenodd;}techdegree
Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 Points

I don't know what you are doing wrong but You have to define a class .row in a div inside div with class container. So your code suppose to look like this:

<div class="container">
  <div class="row">

    <div>
      <h2>your text</h2>
      <p>your text</p>
    </div>

    <div>
      <h2>your text</h2>
      <p>your text</p>
    </div>

    <div>
      <h2>your text</h2>
      <p>your text</p>
    </div>

  </div>
</div>
Thomas Beaudry
Thomas Beaudry
29,084 Points

You are "the man" thats right on the money!! What I did wrong was I deleted " container" (because it wasn't mentioned in the video) and replaced it with just "row". Thank you so much Krzysztof!!