Skip to content

Commit

Permalink
More real example
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Jun 3, 2019
1 parent 897433c commit c0515d7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ entirely):
::placeholder {
color: gray;
}

.image {
background-image: url(image@1x.png);
}
@media (min-resolution: 2dppx) {
.image {
background-image: url(image@2x.png);
Expand Down Expand Up @@ -41,6 +45,10 @@ of Autoprefixer.
::placeholder {
color: gray;
}

.image {
background-image: url(image@1x.png);
}
@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 2/1),
(min-resolution: 2dppx) {
Expand Down

0 comments on commit c0515d7

Please sign in to comment.