Skip to content

Nested columns limitation #3

Description

@dlzi

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions