gpt4 book ai didi

同一行中的 html 标签不起作用

转载 作者:行者123 更新时间:2023-11-28 01:12:37 25 4
gpt4 key购买 nike

在我的 html 中,我有两个输入标签,在我搜索并尝试更多代码后,我希望它们在同一行。

它没有改变任何东西,我的代码有什么问题吗?

<div class="form-group">
<label class="col-lg-3 control-label">Meaning:</label>
<div class="col-lg-8">
<div class="">
<div class="lnw">
<span class="inline">
<input class="form-control" type="text" name="meaning[]" id="meaning " style="float: right">
<input type="image" src="/images/pjdict/plus.png" alt="Submit" width="48" height="48" class="add_field_button">
</span>
<br>
</div>
</div>
</div>
</div>

最佳答案

您已经为 input["type="text"] 或 input["type="image"] 提供了一些宽度,如下所示:

否则你在 form-control 类中自定义类,然后将这个类重新添加到 .form-control

参见 Bootply link

.form-control {
float: left !important;
width: 90%;
}
.add_field_button {
float: right;
text-align: center;
width: 10%;
}

关于同一行中的 html 标签不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36979622/

25 4 0