-1

这是我希望网站设计的方式:设计

所以我处于第一步,我的问题是如何将滑块 div 放在标题 div 上,我希望它位于中心。我使用的代码是:

<div id="header">
<div class="slider">
</div>
</div>
<div class="content">
</div>
<div class="footer">
</div>


body {
    margin:0px;
    padding:0px;
    background:#fff;
}

#header
{
    background:#859685;
    height:300px;

}

.slider
{
    margin-left:auto;
    margin-right:auto;
    margin-top:50px;
    position:absolute;
z-index:1;
width:980px;
height:200px;
border: 4px #666 solid;  
}

.content
{
    margin-left: auto;
  margin-right: auto;
  margin-bottom:10px;
  margin-top:10px;
  width:980px;
  height:400px;
  background:#fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.footer
{
    margin-top:10px;
    margin-bottom:10px;
padding: 0;
height:300px;
background:#98AFC7;
-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background:#111312;
}

这是我的小提琴 jsfiddle.net/hdmep/

提前谢谢!

4

3 回答 3

1

将您的滑块类更改为如下所示:

.slider
{
    margin-left:auto;
    margin-right:auto;      
    left:0;
    right:0;
    margin-top:250px;
    position:absolute;
    width:980px;
    height:200px;
    border: 4px #666 solid;  
}
于 2013-09-22T15:06:30.170 回答
0

看看这个工作小提琴 我稍微改变了尺寸(所以它在小提琴中看起来不错)

这都是关于绝对定位的。

另外,如果您只是要使用背景作为颜色,请使用background-color而不是and,请注意同时使用所有面background 的简短方法。margin

CSS:

#header
{
    background-color: #859685;
    height: 100px;
    position: relative; /*the slider is now relative to the header*/
}
.slider
{
    position:absolute;
    width: 80%; /*80% of header*/
    height: 50%; /* 50% of header*/
    border: 4px #666 solid;
    top: 70%;
    left: 10%;
}
.content
{
    margin: 10px auto;
    height: 100px;
    background-color: azure;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.footer
{
    margin: 10px 0;
    height: 100px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #111312;
}
于 2013-09-22T15:25:09.747 回答
0

试试这个: 演示

更新滑块类:

.slider {
    margin-left: auto;
    margin-right: auto;
    bottom: -150px;
    position: relative;
    z-index: 1;
    width: 980px;
    height: 200px;
    border: 4px #666 solid;
}
于 2013-09-22T15:29:27.810 回答