gpt4 book ai didi

html - 水平对齐除标签之外的选择字段

转载 作者:行者123 更新时间:2023-11-28 15:20:21 26 4
gpt4 key购买 nike

如何对齐除标签之外的选择框,我想将其保留在左上角?

<form class="form-inline">
<div class="form-group">
<label for="SelectDate">Date of Event</label>
<select class="form-control" id="SelectMonth">
<option>Jan</option>
<option>Feb</option>
<option>Mar</option>
</select>
<select class="form-control" id="SelectDay">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<input class="form-control" type="Number" placeholder="Year">
</div>
</form>

这段代码使它们全部对齐,但我试图让它看起来像:

日期

[月][日][年]不

日期[月][日][年]

谢谢你们。

最佳答案

您可以将此样式添加到您的标签中:

.form-inline label[for="SelectDate"] {
display: block;
}

现在它将按照您的需要显示:https://codepen.io/anon/pen/aLdZgX

关于html - 水平对齐除标签之外的选择字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46283537/

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