Semantic-ui: Full Height Columns

Created on 16 Apr 2015  路  2Comments  路  Source: Semantic-Org/Semantic-UI

Hello,
First of all thanks for the this awesome project.
I'm using code like that, i just want to make the this two column full height.
I'm new at grid systems i don't know how its done.
My Code:

<div class="ui two column row vertically padded grid">
<div class="four wide column" style="background:red;">
    left_menu
</div>
<div class="twelve wide column" style="background: blue;">
    content
</div>

Thanks

Most helpful comment

Thanks @jlukic! It's elegant solution if you want to make columns _equal_ size.

If you need _full_ height column instead - you could either try stretched class or set min-height to 100%.

.ui.grid {
    min-height: 100%;
}

All 2 comments

in 1.x you can use equal height grid or equal height row in 2.0 it is default.

Thanks @jlukic! It's elegant solution if you want to make columns _equal_ size.

If you need _full_ height column instead - you could either try stretched class or set min-height to 100%.

.ui.grid {
    min-height: 100%;
}
Was this page helpful?
0 / 5 - 0 ratings

Related issues

Colums are not responsive.
mllamazares picture mllamazares  路  3Comments

[UI] Tour / Guide
deneuxa picture deneuxa  路  3Comments

Search : Appending parameter to search query before making ajax call
arj-196 picture arj-196  路  3Comments

[Form] Form Validation Behavior is not as expected
zhaoyao91 picture zhaoyao91  路  3Comments

[multiple search dropdown]
ghost picture ghost  路  3Comments