S
S
Sergey Vasenin2017-08-12 15:39:29
css
Sergey Vasenin, 2017-08-12 15:39:29

How to align boxes to right and left using flexbox?

how to place 1 block on the left and the other on the right inside the block

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
Ilya Belsky, 2017-08-12
@emin313

.block-wrap {
    display: flex:
    justify-content: space-between;
}

F
Funt01, 2017-08-12
@Funt01

.container{display: flex;
flex-flow-row
}
.firstblock{ flex:1;
width: //as many as you need.
}
.secondblock{ flex:2 }
I'm a beginner myself) Try it)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question