1
2
3
Three Column
HTML
<div class="dt dt--fixed"> <div class="dtc tc pv4 bg-black-10"> 1 </div> <div class="dtc tc pv4 bg-black-05"> 2 </div> <div class="dtc tc pv4 bg-black-10"> 3 </div> </div>
css
.dt { display: table; } .dtc { display: table-cell; } .dt--fixed { table-layout: fixed; width: 100%; } .bg-black-10 { background-color: rgba(0, 0, 0, .1); } .bg-black-05 { background-color: rgba(0, 0, 0, .05); } .pv4 { padding-top: 2rem; padding-bottom: 2rem; } .tc { text-align: center; }
Css stats for this component
- Gzipped Size
- 187B
- Selectors
- 7
- Declarations
- 9
Modules referenced
Install via npm Only installs the needed tachyons-modules for this component
npm i --save tachyons-display tachyons-skins tachyons-spacing tachyons-text-align