freeCodeCamp Challenge Guide: Create a Bootstrap Row

Create a Bootstrap Row


Solutions

Solution 1 (Click to Show/Hide)
<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row"></div>
</div>
2 Likes

hi on creating a bootstrap row, how do i create a div element below my h3 element in this challenge? ive been on this challenge now for almost two days with no respite,hope you can help?

Do you mean something like:

<h3> H3 Element</h3>
DIV ELEMENT HERE

Post edited to avoid giving out the answer.

yes but the challenge still ask to create a div element :Add a div element below your h3 element. it is challenge 80 on creating a bootstrap row

this is the code i have written but where to create the div element now is the issue

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

Edited post to make the code visible by Rafase282

Hi,

Rafase282 is correct,

your new div element goes below the line with H3. apart from that you’re bang on.

Mark

2 Likes

I made you code visible, now looking at that, it looks like your row element in on top of the h3 element which is not what you described as the solution you needed.

1 Like

ok…let me adjust and see. thanks so far

wow it worked it worked and ive been stuck here for close to three days.thank you thank you thank you Rafase282 and Mark

You are welcome, Next time you are stuck, feel free to check https://github.com/FreeCodeCamp/FreeCodeCamp/wiki particularly look for the map. I’m in the process of migrating all that information to the forum but there is no need to wait to make use of it.

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

this correct answer

4 Likes

Hey, I am still really stuck on this challenge can someone help?

This is the code I’ve got

jQuery Playground

I don’t know how to get the Add a div element below your h3 element.

Any help would be great

Thanks

Sarah

Sorry hasn’t show my code,

you must put H3 after class conatainer-fluid. and next div class row.

please you try this code. this is work .

2 Likes