mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
24 lines
362 B
CSS
24 lines
362 B
CSS
.class {
|
|
background: none;
|
|
}
|
|
|
|
.class {
|
|
background: image-set(url(foo.jpg) 2x);
|
|
}
|
|
|
|
.class {
|
|
background-image: image-set(url(foo.jpg) 2x);
|
|
}
|
|
|
|
.class {
|
|
background: filter(url('image.jpg'), blur(2px));
|
|
}
|
|
|
|
.class {
|
|
background: filter(url('image.jpg'), blur(2px));
|
|
}
|
|
|
|
.class {
|
|
background: url(image.jpg), filter(url('image.jpg'), blur(2px));
|
|
}
|