Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<div class="col-two-thirds">
    <div class="content-padding-sml">
        <div class="content-padding-med">
            Content Here
        </div>
    </div>
</div>

<div class="col-third">
    <div class="content-padding-sml">
        <div class="content-padding-med">
            More Content Here
        </div>
    </div>
</div>

<div class="col-full">
    <div class="content-padding-sml">
        <div class="content-padding-med">
            Other Content Here
        </div>
    </div>
</div>

Can’t achieve the 20px gap?

There may be certain use cases where using either .content-padding-sml and/or .content-padding-med does not allow the desired 20px spacing between elements and often when creating new layouts, the spacing above/below/in between elements can be more than 20px.

...