gpt4 book ai didi

html - 使 Html 标签显示在 Div 元素的右侧

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

我有一个 DIV 元素:

<div style="background-color:red">This is a test
<label>ID:</label>
<asp:TextBox runat="server"><asp:Textbox>
</div>

我需要在左侧显示“这是一个测试”,但在右侧显示标签和文本框。

我试过了

margin:right 0px;

但这并没有帮助。

也试过 Float:right 但这产生了奇怪的结果。

最佳答案

添加一个div来包裹标签和输入,并使用float:

.input-group {
float: right;
}
<div style="background-color:red">This is a test
<div class="input-group">
<label>ID:</label>
<input type="text" />
</div>
</div>

关于html - 使 Html 标签显示在 Div 元素的右侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33633970/

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