Created
March 1, 2022 05:54
-
-
Save mattbell87/d2c25c45ab217ab13e0b9635eb59f47c to your computer and use it in GitHub Desktop.
iOS / Webkit support for gap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| display: flex; | |
| gap: 40px; | |
| @supports not (gap: 40px) { | |
| > div { | |
| margin-left: 40px; | |
| } | |
| > div:first-of-type { | |
| margin-left: 0px; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment