gpt4 book ai didi

html - 相对于 TextField 对齐标签

转载 作者:太空宇宙 更新时间:2023-11-03 20:40:34 29 4
gpt4 key购买 nike

我希望我的 firstLabel 位于同一行文本字段的右侧。

enter image description here

    //css
input[type="text"]{
display:block;
margin-bottom:10px;
width: 50px;
text-align:center;
float:center;
}

label {
float: right;
text-align:right;
color: white;
font:12;
}

//html
<label for="first">First Value</label>
<input type="text" value="93" id="firstTF"/><br/>

最佳答案

http://jsfiddle.net/x3gb6gcw/2/

html

<input type="text" value="93" id="firstTF"/>
<label for="first">First Value</label>

CSS

input[type="text"]{
display:block;
margin-bottom:10px;
width: 50px;
text-align:center;
display:inline-block;
}

label {
text-align:left;
color: #000;
font:12;
display:inline-block;
}

关于html - 相对于 TextField 对齐标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26536875/

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