-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
I today I noticed some limitations on the nested columns, or I didn't get the idea right. Let's use for example a classic layout to demonstrate my issue.
Content-Sidebar
<div class="row">
<div class=column-9">
<p>content</p>
</div>
<div class=column-3">
<p>content sidebar</p>
</div>
</div>
So far so good. But what if I want to divide the content in two columns? Since I want to divide the content in two equal parts, I thought I could do:
<div class="row">
<div class=column-9">
<div class="row">
<div class="column-6">
<p>content left</p>
</div>
<div class="column-6">
<p>content right</p>
</div>
</div>
</div>
<div class=column-3">
<p>content sidebar</p>
</div>
</div>
But that will break the layout. Is that a limitation or am I doing something wrong?
Cheers
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels