Confusing Question
See original GitHub issueChallenge http://www.freecodecamp.com/challenges/waypoint-create-bootstrap-wells has an issue. Please describe how to reproduce it, and include links to screenshots if possible.
Bootstrap has a class called well that can create a visual sense of depth for your columns. Nest one div element with the class well within each of your col-xs-6 div elements.
Nest both of your div class=“col-xs-6” elements within your div class=“row” element.
I tried to solve by creating additional div tags but it continued to indicate that the challenge had not been completed.
Code:
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row">
<div class="col-xs-6">
<div class="well"></div>
</div>
<div class="col-xs-6">
<div class="well"></div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
</div>
<div class="col-xs-6">
</div>
</div>
</div>
Issue Analytics
- State:
- Created 8 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
125 Trick Questions (with Answers) That Are Confusing - Parade
1. What are two things you can never eat for breakfast? · 2. What is always coming but never arrives? · 3. What...
Read more >200 Confusing Questions To Blow Your Mind | Thought Catalog
Confusing Questions To Ask Others · If God sneezed, what would you say? · When all is said and done, would you have...
Read more >70 Most Confusing Questions Anyone Would ... - Byliner.com
25 Funny Confusing Questions · 1. Can you talk down to someone who is taller than you? · 2. What hair color is...
Read more >60 Really Confusing Questions To Ask That Will Leave ...
Confusing questions provide a fun way to kill time, and we have made a huge list of confusing questions that will leave you...
Read more >145 Confusing Questions That Will Make Your Brain Hurt
So if you are looking for an easy way to make your brain hurt, the many questions below will do the trick. Do...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I believe one div, not two, has the class of “row”
<! the right answer. You have to take one <!div> from the middle and place it in the end to get the answer>
<div class="container-fluid">jQuery Playground
<div class="col-xs-6"> <div class="well"> </div> </div> <div class="col-xs-6"> <div class="well"> </div> </div> </div> </div>