-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
css.properties.justify-content - right does not work on (mobile) safari #15915
Comments
I've just tested this myself and |
I've tested on iOS 15.4 and 15.5 and both demos works. On iOS 14.5 only the first one works so I'm assuming before iOS 15.4 it didn't work with display flex but did with display grid. (The difference between the two demos is the display property) |
The data for justify content has a weird split where the values are all under flex but not grid so idk what the correct fix in the data is. |
I did find that flex-end does indeed work, so I'm using that instead. |
I got here after noticing an error in the BCD table for left / right values in the flex context. The fix in #4604 incorrectly recorded the start / end / left / right support status. The start / end values have since been fixed in #12602. I have not been able to verify the support status in Safari 15.4 and 15.5 and I have not been able to create a Pull-Req to fix the latest tables. However, I have confirmed that at least Safari 15.3 does not support left / right values. The "left" and "right" values in the flex context must be modified in the BCD table. |
I have not been able to confirm a lack of support in Safari on my iPhone or my iPad. I have also been able to confirm that Safari 15.2 and 15.3 on iPhone have support using BrowserStack. |
What information was incorrect, unhelpful, or incomplete?
It said that
justify-content: right;
works on mobile safari, which while I was making my website, I found out thatright
does not work.What did you expect to see?
I expected to see the elements on the right.
Did you test this? If so, how?
while I was making my website. I also went to the docs, and tested it out on mobile.
MDN page report details
css.properties.justify-content
The text was updated successfully, but these errors were encountered: