1
HTML/CSSBeginner#css#flexbox
flex-basis sets the initial size before space distribution. flex-grow defines how much of the extra free space an item takes relative to siblings. flex-shrink defines how much an item shrinks when space is insufficient. flex is shorthand: flex-grow flex-shrink flex-basis.
.sidebar { flex: 0 0 250px; } /* fixed width, no grow/shrink */
.main { flex: 1 1 auto; } /* grows to fill remaining space */