图像不会100%向右

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

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

  • 您可以使用background-size属性将背景图像“拉伸”至100%。

    background-size: 100%;
    

    你的CSS:

    #navbar {
       background-image: url('../images/nav.png');
       background-repeat: no-repeat;
       background-color: black;
       background-size: 100%;
    }
    

    http://jsfiddle.net/FDVby/7/


    使用background-size属性以下是文档:https://developer.mozilla.org/en-US/docs/CSS/background-size

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

    上一篇: image does not go 100% to the right

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