gpt4 book ai didi

div 方形对齐问题中的 css div

转载 作者:太空宇宙 更新时间:2023-11-03 22:00:39 24 4
gpt4 key购买 nike

我正在尝试在 html 页面中创建一个 6 * 6 的正方形输入框。为了定位它们,我使用了 div 和 css:

<div class="boxes">
<div class="box_0_0"><input... ></div>
<div class="box_0_1"><input... ></div>
<div class="box_0_2"><input... ></div>
<div class="box_0_3"><input... ></div>
...
<div class="box_1_0"><input... ></div>
<div class="box_1_1"><input... ></div>
...
</div>

在哪里

.boxes { position: relative; }

.box_0_0 { position: relative; float: left; top: 0px; left: 0px; width: 40px; height: 50px; }
.box_0_1 { position: relative; float: left; top: 0px; left: 50px; width: 40px; height: 50px; }
...

.box_1_0 { position: relative; float: left; top: 60px; left: 0px; width: 40px; height: 50px; }
.box_1_1 { position: relative; float: left; top: 60px; left: 50px; width: 40px; height: 50px; }

但结果不是正方形对齐:

enter image description here

我怎样才能做到这一点?

最佳答案

取出 float: left 并在 box_0_0 上使用 position: absolute 而不是 position: relative 和休息。这行得通吗?

关于div 方形对齐问题中的 css div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10777058/

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