gpt4 book ai didi

css - 仅使用 CSS 的两个 div 之间的集中 div

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

我想知道如何集中一个 div,未知 width仅使用 CSS .

我想要这样的东西:

enter image description here

使用 <center>我有:

<div style="float: left">
<p:commandButton .../>
</div>
<center>
<p:commandButton ..."/>
<p:commandButton .../>
</center>
<div style="float: right">
<p:commandButton .../>
</div>

如何只使用 css

注意:我不使用 margin: 0 auto只是因为集中式 div 的大小未知。

最佳答案

1) 在父 div(即您提到的元素的父级)上设置 text-align:center

2) 将 center 元素替换为 div 并在其上设置规则 display:inline-block

fiddle

.parent {
text-align: center;
}
.middleBtns {
display: inline-block;
}
<div class="parent">
<div style="float: left">
<button type="button">
< </button>
</div>
<div class="middleBtns">
<button type="button">btn1</button>
<button type="button">btn2</button>
</div>
<div style="float: right">
<button type="button">></button>
</div>
</div>

关于css - 仅使用 CSS 的两个 div 之间的集中 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26157924/

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