背景图像不会出现在span类中

时间:2014-12-14 14:21:35

标签: html5

<span class="arrow" style="width:20px;height:20px;background-image: url(image/arrow.png);display:inline-block;"></span>

然而,箭头并没有显示出来。我仔细检查了路径。这是对的。我做错了什么? 我甚至试过显示:块; 没有变化。

1 个答案:

答案 0 :(得分:0)

你必须三重检查你的路径:)

<span class="arrow" style="width:100px;height:50px;background-image: url(http://lorempixel.com/100/50/cats/1/);display:inline-block;"></span>

对于更干净的代码,您可以在单独的文件中将样式属性之外的CSS代码编写。