Skip to content

Instantly share code, notes, and snippets.

@Manyaka
Last active May 21, 2020 11:13
Show Gist options
  • Save Manyaka/97388b74b05b0c897c3d8bdba5cfb0d0 to your computer and use it in GitHub Desktop.
Save Manyaka/97388b74b05b0c897c3d8bdba5cfb0d0 to your computer and use it in GitHub Desktop.
div {
margin: 1em auto;
width: 50vw;
height: 50vh;
background-color: gray;
background-image: url("img.webp");
background-position: 50% 50%;
background-size: cover;
@supports (background-image: -webkit-image-set(url("img.webp") 1x)) {
background-image: -webkit-image-set(
url("img.webp") 1x,
url("img@2x.webp") 2x);
}
.ie & {
background-image: url("img.jpg");
}
}
div {
// для сафари, потому что она не понимает webp, работает беcпрефиксное правило
// отдельно, потому что внутри блока не работает дисейбл автопрефиксера
/* autoprefixer: ignore next */
@supports (background-image: image-set(url("img.jpg") 1x)) {
background-image: image-set(
url("img.jpg") 1x,
url("img@2x.jpg") 2x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment