使用background-repeat和background-repeat作为CSS精灵

时间:2011-04-25 10:04:11

标签: css css-sprites sprite

Here is the demo,这是精灵:

sprite

我想在标记中使用箭头,如下所示:

<div class="tooltip">
    The tooltip
    <span class="arrow"></span>
</div>

环境:

background-image: url(foobar.gif);
background-position: 0 -40px;
background-repeat: none;

似乎不起作用(如预期的那样)。任何解决方法?

3 个答案:

答案 0 :(得分:1)

你的意思是:

background-repeat:no-repeat

答案 1 :(得分:0)

准确使用高度和宽度..

例如,

background-position: 0 -40px; 
background-repeat: no-repeat;
height:32px;
width:32px;

或在线使用sprite生成器,它们将渲染图像和css ..

例如:http://spritegen.website-performance.org/

答案 2 :(得分:0)

嗯试试这个:

background: url(foobar.gif) 0 -40px no-repeat transparent;

应该工作。