Skip to content

Instantly share code, notes, and snippets.

@mattbell87
Created March 1, 2022 05:54
Show Gist options
  • Select an option

  • Save mattbell87/d2c25c45ab217ab13e0b9635eb59f47c to your computer and use it in GitHub Desktop.

Select an option

Save mattbell87/d2c25c45ab217ab13e0b9635eb59f47c to your computer and use it in GitHub Desktop.
iOS / Webkit support for gap
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