Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Getting flexboxes to fill verticle space Reply To: Getting flexboxes to fill verticle space

#241067
Paulie_D
Member

That’s because that .mainContent div wasn’t using flexbox…

It wasn’t set to display:flex and then it need to be a column

.mainContent {
    flex: 1 75%;
    background: black;
    order: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

Sorted!