0

我有一个容器 div(outer_most_container),我想在其中放置一个图像(蓝色渐变)作为背景。滚动时应固定图像。现在的问题是图像的宽度为 1040 像素,应该适合 65em 的 div 的宽度,但事实并非如此。

另外,我不确定为什么缩小时图像会消失。

http://i.imgur.com/patgb.png

HTML

<!DOCTYPE HTML>
<html>
<head>
    <title>UnderWater Theme</title> 
    <link rel="stylesheet" href="underwater.css" />
</head>
<body>
    <div class="outer_most_container">
            <div class="top">
                <div class="banner">    
                </div>
            </div>
    </div>
</body>
</html>

CSS

* {
    margin: 0;
    padding: 0; 
}
html {
    font-size: 100%;
    height: 100%;
}
body {
    font-size: 1em;
    background-color: black;
    height: 100%;       
}
.outer_most_container {
    position: relative; 
    width: 65em;
    height: 43.75em;
    margin: auto;
    background-image: url('Aura.jpg');  
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: red;
}
4

1 回答 1

0

通过使用以下方法,我能够防止图像在缩小期间调整大小:

background-size: 65em 43.75em;
于 2012-06-20T06:54:49.240 回答