我有两个文件夹
1:WebContent / WEB-INF / resources / css / style.css
2:WebContent / WEB-INF / resources / img / biggerdot.png
我想用这段代码拍摄背景图片
background: url('../img/biggerdot.png') center bottom no-repeat;
但没有任何反应。
也尝试过:
background: url('/img/biggerdot.png') center bottom no-repeat;
background: url('../../img/biggerdot.png') center bottom no-repeat;
THX寻求帮助
答案 0 :(得分:0)
试试这个
background: url('../img/biggerdot.png') center bottom no-repeat;
答案 1 :(得分:0)
尝试:
background: url('img/biggerdot.png') center bottom no-repeat;