gpt4 book ai didi

html - 将填充或边距应用于 float 内容的容器

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

考虑以下 html 结构:

<div class="entry">
<h1>Title</h1>
<p>...</p>
<p>...</p>
<div class="tagged">...</div>
<div class="comments">...</div>
</div>

CSS 是:

.taggged { float: left; width: 50%; }
.comments { float: right; width: 50%; text-align: right; }
.entry { margin-bottom: 30px; }

问题是边距(或填充,如果适用)不会呈现在 .entry 元素的底部。我在 .entry 上尝试过 overflow: autoclear:

的各种排列

最佳答案

我会试试

.entry { 溢出:隐藏;底部边距:30px; }

根据我的经验,另一件更好的事情是在源代码顺序中首先使用正确的 float 元素,如下所示:

<div class="entry">
<h1>Title</h1>
<p>...</p>
<p>...</p>
<div class="comments">...</div>
<div class="tagged">...</div>
</div>

关于html - 将填充或边距应用于 float 内容的容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11702325/

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