我写这个是从我的根文件夹中获取图片:
#sidebar h2 {
margin: 0;
padding: 20px 0 2px 30px;
background: url(~/images/img05.gif) no-repeat left bottom;
border-bottom: 2px solid #4A3903;
}
我的图像位于根文件夹中,但图像未显示!
答案 0 :(得分:0)
尝试
background: url('../images/img05.gif') no-repeat left bottom;
答案 1 :(得分:0)
理想情况下~
它应该有效,因为它意味着从root
中选择。你在图像路径中缺少引号,因此可能是图像没有显示。
#sidebar h2 {
margin: 0;
padding: 20px 0 2px 30px;
background: url("~/images/img05.gif") no-repeat left bottom;
border-bottom: 2px solid #4A3903;
}