gpt4 book ai didi

css - (css) div inside div,居中并在底部

转载 作者:行者123 更新时间:2023-11-28 12:49:12 25 4
gpt4 key购买 nike

我试图在一个 div 标签中插入一个 div 标签,子标签所在的位置居中并位于底部。 (我尝试了 Stack Overflow 中的几种解决方案,但均未成功)。使用以下 css 和 html 示例,我遇到了问题

    body{
margin:0;
font-family:Georgia,Times,serif !important;
font-size:12pt;
background:white;
}

#header{
height: 60px;
width: 100%;
border: 1px solid black;
}
#navWrap{
background:white;
bottom: 0;
font-size: 12pt;
height: 40px;
border: 1px solid black;
margin: 0px auto;
width: 960px;
}


#contentWrapper{
width:960px;
padding: 0;
margin:15px auto 10px auto;
}

#content{
padding: 20px 10px 10px 10px;
height:100%;
background:#fff;
border: 1px solid black;
}

#footer {
width:100%;
height:260px;
margin:0 auto;
padding: 20px 10px 10px 10px;
border: 1px solid black;
bottom:0;
}
#copyright{
width:100%;
height:60px;
bottom:0;
margin: 0 auto;
border: 1px solid black;
}
<body>
<div id="header">
<div id="navWrap">
This is navigation box.
</div>
</div>
<div id="contentWrapper">
<div id="content">
This is a container
</div>
</div>
<div id="footer">
This is a footer.
</div>
<div id="copyright">
This is a copyright.
</div>
</body>

我想要底部标题位置内的导航 (navWrap)。我怎样才能做到这一点?

最佳答案

将此添加到标题

position:relative

然后这个到 navWrap

position:absolute;
left:50%;
margin-left:-480px; /* centering because your navWrap is 960px in width */

http://jsfiddle.net/fYxAQ/

关于css - (css) div inside div,居中并在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17133387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com