gpt4 book ai didi

css - 在 CSS 中以等间距居中多个输入元素

转载 作者:行者123 更新时间:2023-11-28 06:36:48 25 4
gpt4 key购买 nike

我有一些带有文本的单选按钮。我怎样才能将所有这些东西居中,以便第一个按钮与最后一个 INPUT 的 P 的最后一个字母的“margin-right”相同?

HTML

<div class='someClass'>
<input type='radio' name='someName'>example
<input type='radio' name='someName'>other text
</div>

CSS

.someClass{
width:400px}

.someClass input{
float:left}

最佳答案

您可以对元素使用 display: inline-block 将主题放在一行中,仍然为它们保留宽框模型属性,如边距、填充等:

.someClass{
text-align: center;
}
.someClass .inputs{
display: inline-block;
}
<div class='someClass'>
<p class="inputs"><input type='radio' name='someName'>example</p>
<p class="inputs"><input type='radio' name='someName'>other text</p>
</div>

关于css - 在 CSS 中以等间距居中多个输入元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34622148/

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