Files
fitness_walk_nwnu/node_modules/postcss-urlrewrite/test/fixtures/absolute.css
T
2026-09-08 20:28:54 +08:00

12 lines
398 B
CSS

.web-one { background: url("http://www.google.com/images/srpr/logo3w.png"); }
.web-two { background: url(http://www.google.com/images/srpr/logo3w.png); }
.web-three { background: url('http://www.google.com/images/srpr/logo3w.png'); }
.absolute-one { background: url("/resources.png"); }
.absolute-two { background: url(/resources.png); }
.absolute-three { background: url('/resources.png'); }