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