gpt4 book ai didi

html - 如何将页脚中的内容居中

转载 作者:太空宇宙 更新时间:2023-11-04 12:03:59 25 4
gpt4 key购买 nike

我正在使用 wordpress 主题构建一个网站。我在页脚中有两个元素(一个向左浮动,第二个向右浮动)。调整浏览器窗口大小时,我需要使其居中(第一个下方的第二个)。我试着给 <p><div>标记一个类,然后将其设置为 float:none; - 但是您无法检查它在网页上是否真的有效。我还附上了一张我想要的照片..

WEBPAGE

<div class="site-info">
<div style="margin:0 auto; width: 75%;">
<p style="float:left;">&copy; Copyright <?= date('Y'); ?> Hotel Švýcarský Dům</p>
<div style="float:right;">Naleznete nás na sociálních sítích:
<a style="display: block; float:right; margin:-4px 0 0 5px;" href=""><img src="/wp-content/themes/adamos/images/gplus.png" /></a>
<a style="display: block; float:right; margin:-4px 5px 0 5px;" href=""><img src="/wp-content/themes/adamos/images/facebook.png" /></a>
</div>
<div class="clear"></div>
</div>
</div><!-- .site-info -->

THIS IS HOW I WANT IT TO LOOK LIKE

最佳答案

这是更新后的代码。对于小于 600px 的屏幕,div 将相互重叠。这可能需要调整以适应您的网站。

#left {
float: left;
}
#right {
float: right;
}
#center {
text-align: center;
}
#container {
margin-left: 12.5%;
margin-right: 12.5%;
}
.imagefloat {
display: block;
float: right;
margin: -4px 5px 0 5px;
}
@media (max-width: 600px) {
.nofloat {
width: 100%!important;
text-align: center;
float: none!important;
}
.imagefloat {
float: none!important;
}
}
<div class="site-info">
<div id="container">
<div id="left" class="nofloat">&copy; Copyright
<?=d ate( 'Y'); ?>Hotel Švýcarský Dům</div>
<div id="right" class="nofloat">
<a class="imagefloat" href="">
<img src="/wp-content/themes/adamos/images/gplus.png" />
</a>
<a class="imagefloat" href="">
<img src="/wp-content/themes/adamos/images/facebook.png" />
</a>
</div>
<div id="center">Naleznete nás na sociálních sítích:</div>
<div class="clear"></div>
</div>
</div>

关于html - 如何将页脚中的内容居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29521670/

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