css - 34grid : How to create a column with 2/3 width? -


using 34 responsive grid system, how create column two-third of full width ?

the grid system has equal columns settings, how can colspan / merge 2 columns ?

<div class="container">     <section class="row">         <div class="col_1">100%</div>     </section>     <section class="row">         <div class="col_2">50%</div>         <div class="col_2">50%</div>     </section>     <section class="row">         <div class="col_3">33%</div>         <div class="col_3">33%</div>         <div class="col_3">33%</div>     </section> </div> 

looks documented in homepage should thoroughly read.

try this:

<section class="row">     <div class="col_3c">66%</div>     <div class="col_3">33%</div> </section> 

Comments

Popular posts from this blog

ios - UICollectionView Self Sizing Cells with Auto Layout -

node.js - ldapjs - write after end error -

DOM Manipulation in Wordpress (and elsewhere) using php -