mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
14 lines
488 B
CSS
14 lines
488 B
CSS
|
div {
|
||
|
background: -moz-element(#id);
|
||
|
background: element(#id);
|
||
|
}
|
||
|
div {
|
||
|
background: url(image.jpg), -moz-element(#id);
|
||
|
background: url(image.jpg), element(#id);
|
||
|
}
|
||
|
div {
|
||
|
background: -webkit-image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), element(#id);
|
||
|
background: image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), -moz-element(#id);
|
||
|
background: image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), element(#id);
|
||
|
}
|