Skip to content

Instantly share code, notes, and snippets.

@oshingc
Created March 20, 2017 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oshingc/8cc0cfe7dbb66067a79cea1b062ed4f8 to your computer and use it in GitHub Desktop.
Save oshingc/8cc0cfe7dbb66067a79cea1b062ed4f8 to your computer and use it in GitHub Desktop.
Templates
.table
{
display:table;
}
.table-row
{
display:table-row;
}
.table-cell
{
display:table-cell;
}
<span class="col-xs-10 canary-text canary-box">
<div class="table" >
<div class="table-row">
<div class="table-cell">1</div>
<div class="table-cell">2222222222222222222222222></div>
</div>
<div class="table-row">
<div class="table-cell">33333 </div>
<div class="table-cell">4444444444</div>
</div>
<div class="table-row">
<div class="table-cell">5</div>
<div class="table-cell">6</div>
</div>
</div>
</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment