我正在尝试插入图片,但我无法:( 抱歉,但我总是遇到相同的问题:我的TWIG代码:
<div class="col-6">
<div class="phone">
</div>
和我的SASS代码:
.phone {
background: url('phone.png') no-repeat;
background-size: contain; /*This scales the image accoding to the div*/
background-position: center; /*positions the image in the center*/
width: auto;
height: 50px;
}
我的文件也总是一样:
我总是遇到404错误...
答案 0 :(得分:0)
在url()
中定义的路径必须相对于编译后的.css
文件而不是.scss
文件。