gpt4 book ai didi

html - 如何在父
中平均分配相同大小的
转载 作者:行者123 更新时间:2023-11-28 10:40:08 27 4
gpt4 key购买 nike

这是我当前的 HTML:

<div style="height:50px; width:1200px">

<div tabindex="0" class="banner" onclick="location.href='Home.html'">
Link1
</div>

<div tabindex="0" class="banner" onclick="location.href='Page 1.html'">
Link2
</div>

<div tabindex="0" class="banner" onclick="location.href='Page 2.html'">
Link3
</div>

<div tabindex="0" class="banner" onclick="location.href='Page 3.html'">
Link4
</div>

</div>

还有我当前的 CSS:

.banner {
background: orange;
color: aqua;
float: left;
width: 24%;
height: 50px;
vertical-align: top;
border: 1px solid #000000;
text-align: center;
font-family: Garamond;
font-size: x-large;
display: table-cell;
vertical-align: middle;
line-height:50px;
cursor:pointer;
font-weight:bold;
}

如何使用 css 将孤立对象设置为沿父对象等距分布?我已将每个孤儿设置为父级的 24%,当它们设置为 25% 时,最右边的落在下方(我推测是由于边框占用了额外的空间)。当缩小时,我使用的是父级的百分比,最右边的部分落在下方,但这是网页中唯一因缩放而改变的部分。我尝试将孤儿的边距设置为自动,但这没有用,并且更改 float 导致它们的宽度减小。

更新:我意识到我应该要求父级两端的两个 s 位于它的最后,而内部的两个 s 在剩余间隙中等距。

修正:这是孤儿的边框增加了宽度。我选择去掉边框,因为无论如何网页看起来更好。

最佳答案

CSS 代码:

 .banner {
background: orange;
color: aqua;
box-sizing: border-box;/*Added New Style*/
float: left;
width: 25%;
height: 50px;
vertical-align: top;
border: 1px solid #000000;
text-align: center;
font-family: Garamond;
font-size: x-large;
display: table-cell;
vertical-align: middle;
line-height:50px;
cursor:pointer;
font-weight:bold;
}

您的横幅有 1px 边框,这就是不合适的原因。

DEMO

关于html - 如何在父 <div> 中平均分配相同大小的 <divs?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23172047/

27 4 0

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