Answer the question
In order to leave comments, you need to log in
How to make a responsive website with flexbox?
how to make a site adaptive using flexbox in what units to specify font blocks so that everything is compressed to the size I need about media queries I know I'm only interested in units of measurement
Answer the question
In order to leave comments, you need to log in
I'm only interested in units of measurement
Just like it is done with bootstrap. You have a set of classes that changes its value at a certain screen width.
Let's take a common example:
<div class="row">
<div class="col-md-4 col-xs-4"></div>
<div class="col-md-4 col-xs-4"></div>
<div class="col-md-4 col-xs-4"></div>
</div>
.row {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
flex-direction: row;
justify-content: space-between;
}
float:left
flex-direction:column;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question