gpt4 book ai didi

html - 页脚外的文字

转载 作者:行者123 更新时间:2023-11-28 14:33:57 26 4
gpt4 key购买 nike

我正在尝试向页脚添加文本,但我的第二个和第三个文本位于页脚下方。我该怎么做才能将它放在页脚中?我知道它与 block 级有关,但究竟需要做什么。请并感谢您花时间回答我的问题。

#footer {
background: #2e3131;
position: relative;
height: 165px;
margin-top: -100px;
clear: both;
}

.footer-contact {
color: #fff;
}

.headquaters {
text-align: center;
color: rgb(255, 0, 0);
}

.social-media {
float: right;
color: rgb(255, 0, 238);
}
<footer id="footer">
<div class="footer-contact">
<h3>Contact Us</h3>
<p>Phone: (777) 777-7777</p>
<p>Cell: (347) 777-7777</p>
<p>E-mail: someone@gmail.com</p>
</div>

<div class="headquaters">
<h3>Locations</h3>
<p>90 John Street</p>
</div>


<div class="social-media">
<h3>Follow our social media</h3>
<i style="font-size:24px" class="fa">&#xf230;</i>
</div>

</footer>

最佳答案

实际上,您是在为#footer 添加以 px 为单位的高度,您需要做的是增加高度。

#footer {
background: #2e3131;
position: relative;
height: 500px;
margin-top: -100px;
clear: both;
}

或者您可以查看 here

关于html - 页脚外的文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53773282/

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