flexboxgrid icon indicating copy to clipboard operation
flexboxgrid copied to clipboard

one fixed size column and the other flex

Open applemate opened this issue 9 years ago • 1 comments

column A is on the left, with fixed width 400px column B is on the right, flex

How you do it with this framework?

applemate avatar Nov 16 '16 05:11 applemate

you can create a class for your fixed-size element like:

.col-fixed {
    max-width: 400px;
    flex-basis: 400px;
}

and the use .col-xs for the other one

slackerzz avatar Nov 25 '16 13:11 slackerzz