mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
14 lines
434 B
CSS
14 lines
434 B
CSS
|
@media print and (min-resolution: 300dpi) {}
|
||
|
@media print and (min-resolution: 300dpcm) {}
|
||
|
@media print and (min-resolution: 300dppx) {}
|
||
|
@media print and (min-resolution: 300x) {}
|
||
|
|
||
|
.box {
|
||
|
background-image: -webkit-image-set(
|
||
|
url("small-balloons.jpg") 1x,
|
||
|
url("large-balloons.jpg") 2x);
|
||
|
background-image: image-set(
|
||
|
url("small-balloons.jpg") 1x,
|
||
|
url("large-balloons.jpg") 2x);
|
||
|
}
|