gpt4 book ai didi

css - 如何正确内联此表单?

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

我正在尝试使用 bootstrap 中的 sr-only 类来制作内联表单。

应该是这样的:

Title              Cost
________________ __________ ______ days at $ ______ X (remove button)

我已经在很多地方进行了搜索,但找不到解决方案。

<form>
<div class="form-group col-sm-5">
<label for="name" class="control-label">Title</label>
<input type="email" value='' class="form-control" id="name" placeholder="Title" />
</div>
<div class="form-group col-sm-2">
<input type="email" value='' class="form-control form-custom" id="name" placeholder="Ime" /> days
</div>
<div class="form-group col-sm-2">
<input type="email" value='' class="form-control form-custom" id="name" placeholder="Ime" /> /day
</div>
</form>

Example

最佳答案

.sr-only 类具有 position:absolute 样式。但是你可以定义你自己的类。使用 margin-top 或 height。看看我为你做的这个例子,这样你就可以有一个想法(见整页选项中的片段):

.form-group > .sr-only.control-label {
display: block;
position: relative;
height: 27px;
}
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">

<form>
<div class="form-group col-sm-5">
<label for="name" class="control-label">Title</label>
<input type="email" value='' class="form-control" id="name" placeholder="Title" />
</div>
<div class="form-group col-sm-2">
<label class="sr-only control-label" for="exampleInputEmail3">&bnsp;</label>
<div class="input-group">
<input type="email" value='' class="form-control" id="name" placeholder="Ime" >
<div class="input-group-addon">days</div>
</div>
</div>
<div class="form-group col-sm-2">
<label class="sr-only control-label" for="exampleInputEmail3">&bnsp;</label>

<div class="input-group">
<input type="email" value='' class="form-control" id="name" placeholder="Ime" >
<div class="input-group-addon">days</div>
</div>
</div>

</form>

关于css - 如何正确内联此表单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34004729/

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