我对此进行了研究,只找到了一个 JavaScript 解决方案,所以想知道是否有人知道 CSS 解决方案是否可行......
这是一个代码片段:
HTML
<div id="container">
This is a small amount of text to appear over the stretched
background image, but I want to be able to see the entire image.
</div>
CSS:
div#container
{
background: url('images/bigImage.png') no-repeat 0 0;
background-size: 100%; /* makes the image stretch (vertically and horizontally) to the width of the device, so I've no idea what height the background image will be rendered at.*/
}
有没有我可以使用的 CSS,以便背景图像覆盖整个 div 并且整个图像都可见?
提前致谢。