gpt4 book ai didi

HTML 问题 : multiple Divs float

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

我现在坐了 1 个小时来解决这个问题:如何使“Field Item 2” float 在“Field Item 1”的正确位置使用 CSS 有可能吗?或者两者之间是否也有 div?任何想法? Tanx 很多!

<html>
<head>
<title>Test float</title>
</head>

<body>
<div class="group-header user-slogan">
<div class="field field-name-field-user-slogan field-type-text field-label-hidden">
<div class="field-items">
<div class="field-item even">Field Item1</div>
</div>
</div>
<div class="even zitatgeber" style="float:left;">Field Item2</div>
</div>
</body>
</html>

最佳答案

你可能想试试这个,添加 style="float:left;"放入与Field Item2同级的div中,将Field Item2的样式改为float:right。在这里:

<body>
<div class="group-header user-slogan">
<div class="field field-name-field-user-slogan field-type-text field-label-hidden" style="float:left;">
<div class="field-items">
<div class="field-item even">Field Item1</div>
</div>
</div>
<div class="even zitatgeber" style="float:right;">Field Item2</div>
</div>
</body>

记得为左右添加特定的宽度,这样元素才能正确 float 。

关于HTML 问题 : multiple Divs float,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7751798/

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