Bootstrap - Create Bootstrap Wells

Tell us what’s happening:

I’m not sure if there’s an answer to this on the forum, the get hint answer did not really seem to give a practical answer. so thought I throw it out. Any thoughts?

Your code so far

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6 well">

    </div>
    <div class="col-xs-6 well">

    </div>
  </div>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Bootstrap - Create Bootstrap Wells

Nest one div element with the class well within each of your col-xs-6 div elements.

You have added a ‘well’ class to each of those div elements, rather than nesting new div elements within them.

You’re right! The english sounded a bit funny without knowing the end goal of what the question was looking for. Thanks!

1 Like