gpt4 book ai didi

css - bootstrap - 添加标签到 span

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

我有以下标记

<form role="form">                      
<div class="input-group">
<label for="accountSpan">Account name</label>
<span class="input-group-addon" id="accountSpan">something</span>
<input type="text" class="form-control" placeholder="account name" aria-describedby="basic-addon1" id="accountInput" >
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" />
</div>
</form>

结果

enter image description here

如何让它像密码一样对齐?

最佳答案

像这样尝试: Demo

如果像密码一样使用 form-groupinput-group,您可以获得预期的输出。

<div class="form-group">

<label for="accountSpan">Account name</label>
<div class="input-group">
<span class="input-group-addon" id="accountSpan">something</span>
<input type="text" class="form-control" placeholder="account name" aria-describedby="basic-addon1" id="accountInput">

</div>
</div>

关于css - bootstrap - 添加标签到 span,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36569427/

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