我正在使用gulp-cssimport导入不同的css文件,但是当我使用相对路径导入图像时,变换后的图像路径不会转换为正确的路径。
@import url('../mod/common/common.css');
body {
background-image: url('../../imgs/1.jpg');
}
h1 {
color: red;
font-weight: normal;
text-align: center;
}
body {
background-image: url('../../imgs/1.jpg');
}
h1 {
color: red;
font-weight: normal;
text-align: center;
}
答案 0 :(得分:0)
您的dist/css/channel/index.css
看起来一个目录太高了。
而不是:
background-image: url('../../imgs/1.jpg');
您正在寻找:
background-image: url('../imgs/1.jpg');
这是因为imgs
是channel
的兄弟。