我正在尝试将top-margin
提供给id=footer
的div。但它不起作用而是高度增加了外部div。
HTML文件:
<div id="lowestContainer">
<div class="middle" id="footer">
<address id="addressSFCM">
xxxxx-xxxx-xxxxx-xxxx<br/>
xx--xx--xx--xx<br/>
xxx---xxx-x--x-xx-xx<br/>
Email:xxxxx@hotmail.com
</address>
</div>
</div>
Css文件:
#lowestContainer{
background-color: rgba(18,19,20,1);
height: 300px;
z-index: 1000;
box-shadow: 1px 0px 3px rgb(0,0,0,0.3);
}
#footer{
width:1000px;
height:100px;
display:block;
}
#addressSFCM{
color: rgba(76,76,76,1);
max-width: 220px;
height:auto;
/*margin-top: 30px;*/
display:inline;
}
请帮我解决这个问题;
答案 0 :(得分:0)
更新您的页脚类,如下所示。
#footer{
width:1000px;
height:100px;
display:inline-block;
margin-top:100px;
text-align:center;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
将overflow: hidden
添加到包装器
<强> DEMO 强>
#lowestContainer{
overflow: hidden;
}
#footer{
margin-top: 50px; // add top margin as per needed
}