T
T
timtimIT2016-04-22 18:50:10
css
timtimIT, 2016-04-22 18:50:10

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;

fixed the display problem in safari, but it's crooked in the android browser.
Has anyone encountered the problem of display: flex in the android browser?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
LuckyCat, 2016-04-28
@LuckyCat

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 question

Ask a Question

731 491 924 answers to any question