Skip to content

Instantly share code, notes, and snippets.

@belocer
Last active October 3, 2020 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save belocer/8447156af92dcbdf1c1176db5515354f to your computer and use it in GitHub Desktop.
Save belocer/8447156af92dcbdf1c1176db5515354f to your computer and use it in GitHub Desktop.
Retina
<img src="img/img_x1.jpg"
srcset="img/img_x2.jpg 2x img/img_x3.jpg 3x">
<img src="img/img_x1.jpg"
srcset="img/img_x2.jpg 500w img/img_x3.jpg 700w img/img_x4.jpg 1000w">
.block {
background-image: url('img/img_x1.jpg')
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.block {
background-image: url('img/img_x2.jpg')
}
}
/* OR */
.block {
width: 400px;
height: 400px;
background: url('img/img_x2.jpg') center center no-repeat no-repeat;
background-size: contain;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment