Publicize docs

Section


Basic Section Markup

Section Component is use to wrap components. It has 2 colorscheme: light and dark. You can add these colorscheme by adding class secion-light and section-dark

<div class="section section-light">
  <div class="section-bg bg bg-white"></div>
</div>

You can add container or container-fluid to section.

<div class="section container">
  ...
</div>

You can also make multicolumn section by wrap it with row and add add col-* classes to the section

<div class="row">
  <div class="section col-12 col-xl-5">
    ...
  </div>
</div>