你可以在html中添加背景图片吗?

这个问题在这里已经有了答案:

  • 在背景中拉伸和缩放CSS图像 - CSS只有18个答案

  • 删除双引号,然后像这样使用单引号

    "background: url('../../img/followers/followers-tabs.png')
    

    background-image:url('image path'); 把这段代码放到你的css中并获取背景图像集。


    您需要从网址中删除qoutes

    <div class="container" style="background: url(../../img/followers/followers-tabs.png) no-repeat 0 0px;"></div>
    

    你可以使用'但在CSS背景中的url根本不需要它们。

    这里是固定的小提琴:http://jsfiddle.net/7Gacp/10/。

    传播你可以使用的背景

    background-size: 100% 100%;
    

    这是另一个小提琴:http://jsfiddle.net/7Gacp/11/。

    链接地址: http://www.djcxy.com/p/89217.html

    上一篇: Can you add a background image in html?

    下一篇: Background image fill up/down in CSS