K
K
Konstantin B.2019-11-13 10:11:18
css
Konstantin B., 2019-11-13 10:11:18

Why is only the first element visible on iOS?

Why on iOS in all browsers all the elements in the flexbox container disappear except for the first one?
The container itself has this style in scss

display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

css ready
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

In desktop chrome in mobile device mode, everything is as it should be
5dcbac5c82e5d484018527.png
But on an iPhone like this
5dcbac726ddf7916247568.png
What is the problem I can not understand. Could this be because of the container? How to check?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Andrew, 2019-11-13
@KickeRockK

I won’t say without html, but it seems it’s not about flex
https://caniuse.com/#search=input%20date

M
Meakin, 2019-11-14
@Meakin

You did not throw off the HTML , nothing is clear.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question