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

Popup Menu example doesn't work
Morrolan picture Morrolan  路  3Comments

-webkit-overflow-scrolling:touch with dropdowns produces flashes and hidings in other elements
sarbona picture sarbona  路  3Comments

[Form] Fluid Inline Field Variation
guilhermeblanco picture guilhermeblanco  路  3Comments

Smooth scroll and Scrollspy
iPaoo picture iPaoo  路  3Comments

Improvements suggestions for the dropdown component
davialexandre picture davialexandre  路  3Comments