gpt4 book ai didi

css - 段落在 div 之外流动

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

我正在尝试按照此处所述制作页脚:http://css-tricks.com/left-align-and-right-align-text-on-the-same-line/

问题是 2 个段落放在页脚下一点,好像它们没有在 div 中定义。这是我的代码:

<div id="footer" style="clear: both;">
<p class="alignleft">left</p>
<p class="alignright">right</p>
</div>

CSS:

div#footer{
height: 20px;
padding: 0px 10px;
line-height: 20px;
clear: both;
}
.alignleft {
float: left;
}
.alignright {
float: right;
}

最佳答案

在容器 div 上使用 overflow: hidden; 清除 float ,不要使用 height

Demo

CSS

div#footer {
padding: 0px 10px;
line-height: 20px;
overflow: hidden;
}

关于css - 段落在 div 之外流动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14005675/

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