Answer the question
In order to leave comments, you need to log in
Has anyone encountered the problem of display: flex in the android browser?
Hello.
Faced a problem with display:flex display in the android browser, connected all the prefixes, the code looks like this:
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
Answer the question
In order to leave comments, you need to log in
timtimIT : hello, is it still up to date? try adding something like this:
Full piece:
div {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question