gpt4 book ai didi

html - 把三个标题排成一行。一个在左边,第二个在中间,第三个在右边?

转载 作者:太空宇宙 更新时间:2023-11-04 02:08:31 24 4
gpt4 key购买 nike

我有三个标题,像这样...

<div>
<h4>first</h4>
<h4>second</h4>
<h4>third</h4>
</div>

如何让他们在同一行,第一个在左边,第二个在中间,第三个在右边?

最佳答案

编辑/全新的答案(我没有注意到左/中/右):

使用 flexbox 和 justify-items: space-between;

div {
display: flex;
justify-content: space-between;
}
<div>
<h4>first</h4>
<h4>second</h4>
<h4>third</h4>
</div>

关于html - 把三个标题排成一行。一个在左边,第二个在中间,第三个在右边?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40208606/

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