我用 CSS 制作了一个包含 2 列的模板,就像这张图片。
主 div 是main。它内部有 2 次潜水。DIV sider有一个背景图像。我想一直展示它。现在,我有两个问题。首先,默认情况下它不会覆盖屏幕的高度,除非我min-height=...
为它设置了一个。其次,如果我这样做,滚动页面后,背景图像不会重复覆盖整个屏幕高度。
html {
margin:0 0 0 0;
height: 100%
}
body {
font-family:Arial;
font-size:9pt;
color:#333333;
line-height:200%;
margin:0 0 0 0;
background: #f0f0f0 url('../images/bg-radial-gradient.gif') fixed 230px top no-repeat;
width:100% !important;
height: 100%
}
#main {
width:100%;
min-height: 100%
}
#sidebar {
width:231px !important;
float:left;
background-image:url('../images/sidebar_bg.PNG');
min-height: 100%;
}
#container {
float:left;
padding:25px 25px 25px 25px;
width:70%;
min-height: 100%
}
有什么问题?
编辑:这是我的背景图片