Skip to content

Instantly share code, notes, and snippets.

@vsim1964
Created September 11, 2021 18:49
Show Gist options
  • Save vsim1964/7a2aa074c197cd3f1c96a07e62b87b71 to your computer and use it in GitHub Desktop.
Save vsim1964/7a2aa074c197cd3f1c96a07e62b87b71 to your computer and use it in GitHub Desktop.
b-image & device pixel ratio
.page__header {
position: relative;
background-image: url(img/pic.png);
width: 1440px;
height: 800px;
background-size: 1440px 800px;
margin: 0 auto;
@media (min-resolution: 2dppx) {
background-image: url(img/pic@2x.png);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment