调整包装大小

时间:2012-06-30 20:31:14

标签: html css

在调整#main_wrap的大小时出现问题:

http://www.coffeeproteindrink.com/method-athlete/

#main_wrap {
min-height: 100%;
background: url(images/content_back.png) repeat-y top left; 
margin: 0 0 0 240px;
opacity: .8;
}

#content
{float: left;
margin: -28px 0 30px 0;
position: relative;
z-index: 20;
top: 325px; 
height: 262px;
overflow: scroll;
}

我试图让它看起来像:

http://www.bio-genix.com/

我确信我只是一个大脑放屁,但我似乎无法让它发挥作用。

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:0)

一件简单的事情是(如果可以访问CSS),请转到#Content标签

#content {
float: left;
margin: -28px 0 30px 0;
position: relative;
z-index: 20;
top: 325px;
height: 262px;
overflow: scroll;
}

并删除溢出:滚动,因为您的内容分隔符足够大,可以处理内容而不必溢出。所以看起来应该是这样的

#content {
float: left;
margin: -28px 0 30px 0;
position: relative;
z-index: 20;
top: 325px;
height: 262px;
}

答案 1 :(得分:0)

您的top: 325px值在#content上,比您希望在元素列表中的值更低。因此,您希望使用#main_wrap向下推top,并从top移除#content

#main_wrap {
    position: absolute; 
    top: 325px;
} 
#content {
    top: 0;
}

http://jfcoder.com/test/methodsite.html