gpt4 book ai didi

html - 向右浮动而不创建新行

转载 作者:搜寻专家 更新时间:2023-10-31 22:54:36 24 4
gpt4 key购买 nike

HTML:

<div>Due date:<input type="text" name="dueDate" size="30" value="{{ticket.fields.interval.lastExecution|e}}" required  disabled="disabled"></input></div>
<div>Created by:<input type="text" name="createdBy" size="30" value="{{ticket.fields.personCreated|e}}" required disabled="disabled"></input></div>

CSS:

.open-tickets-view input {
border: 0px solid #474a52;
border-radius: 0px;
max-width: 200px;

结果: enter image description here

如果我尝试使用行内 block 显示向右浮动:

CSS:

.open-tickets-view input {
border: 0px solid #474a52;
border-radius: 0px;
max-width: 200px;
display: inline-block;
float: right;

结果: enter image description here

我在 display: flexuse justify-content: space-between 之间尝试了几种不同的组合,但文本总是换行。

最佳答案

对于输入元素,最好使用 <label> .因为它是输入的标签。标签的默认浏览器行为是,如果您单击标签,鼠标将聚焦输入。 Read more about it here

使用 float :

div.myDiv {
width: 300px;
border: solid 2px red;
}
div.myDiv:after {
/* clear floats is a good thing */
content: '';
display: block;
clear: both;
}
div.myDiv input {
float: right;
border:solid 2px green;
}
div.myDiv label {
border:solid 2px green;
}
<div class="myDiv">
<label for="uname">Choose a username: </label>
<input type="text" id="uname" name="name">
</div>

使用定位:

div.myDiv {
position: relative;
width: 300px;
border: solid 2px red;
}
div.myDiv input {
border:solid 2px green;
position: absolute;
right: 0;
}
div.myDiv label {
border:solid 2px green;
}
<div class="myDiv">
<label for="uname">Choose a username: </label>
<input type="text" id="uname" name="name">
</div>

关于html - 向右浮动而不创建新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48597554/

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