图像未填充背景容器

Image not filling background container

我正在尝试为某个应用制作一个起始页面,但我的响应式图像无法全屏显示。我尝试使用背景大小的 属性 值:但问题仍然存在。使用容器,它削减了图像的宽度,有些丢失了,我不想要 that.Any 非常感谢帮助。

这是我使用的图像 - http://www.shbarcelona.cat/blog/cat/wp-content/uploads/2014/05/formula-2.jpg

谢谢。

 <html>

 <head>

<meta name="viewport" content="width=device-width, initial-scale=1">


<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="http://demos.jquerymobile.com/1.4.5/theme-classic/theme-classic.css"><script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>

   <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>


 </head><body>
 <div data-role="page" >
    <div id="background_image">

        <div data-role="header" data-theme="a">
            <h1>Formula 1 Team List</h1>
        </div>


        <div data-role="main" class="ui-content" id="index_button">
            <a href="#" data-role="button" data-ajax="false"> List of Teams </a>
        </div>

        <div data-role="footer" data-theme="a" data-position="fixed">
            <h1> Kevin Murphy - 11139323</h1>
        </div>
    </div>
</div>

#background_image
{
background: transparent url(formula1.jpg);
background-repeat:no-repeat ;
background-position: center;
background-size: contain;
}

只需使用background-size: cover 即可制作全宽图像。这里的关键是确保将 div 和 body/html 的高度和宽度设置为 100%。

html, body {
    height: 100%;
}

#something {
    color: white;
    height: 100%;
    width: 100%;

    background: url(https://download.unsplash.com/photo-1426200830301-372615e4ac54) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

https://jsfiddle.net/shaansingh/soxjt0aj/2/