Reputation: 2582
I have this code in my CSS for a section
align-items: end;
justify-content: end;
It works well on Chrome MacOs but on Safari the elements are not aligned from the bottom. Does someone know why?
Link: https://q6demo.squarespace.com/homepage#our-6-step-process-section
Upvotes: 6
Views: 19790
Reputation: 2582
I have used this and it is working
-webkit-justify-content: flex-end;
align-items: flex-end;
-webkit-align-items: flex-end;
Source: How is possible that "display: flex" and "align-items: center" do not work anymore on my iphone?
Upvotes: 21
Reputation: 21
My friend, I think it's because of browser support
Information can be found here https://www.w3schools.com/css/css3_flexbox.asp
Upvotes: 2