문제

Using 34 Responsive Grid system, how to create a column with two-third of full width ?

The Grid System has equal columns settings, but how can I 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 like it is as documented in the homepage which you should thoroughly read.

try this:

<section class="row">
    <div class="col_3c">66%</div>
    <div class="col_3">33%</div>
</section>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top