Where to put <section> element in Bootstrap?

Hey Mike,

You can definitely use the HTML section tag like that. The only thing I would recommend doing is to bring the “name of section” part into one of the bootstrap divs. That way your HTML sections are still differentiated, but you’ll be able to take advantage of the bootstrap styling capabilities.

<section> 
    <div class="row">
        <div class="col-xs-12">Name of Section</div>
    </div>
    <div class=row">
        <div class="col-xs-6">
        </div>
        <div class="col-xs-6">
        </div>
    </div>
    <div class="row">
    </div>  </section>

`

1 Like