- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
当 Button 具有给定宽度(通过它的值)并且 Parent div 也具有给定宽度时,是否可以将 Button 放置在 TextBox 旁边。最后TextBox的宽度+Button的宽度应该是父div的宽度。
测试示例:
#left
{
float: left;
width: 100%;
}
#right
{
width: auto;
}
<div>
<input type="text" id="left"/>
<input type="button" id="right" value="AnyText"/>
</div>
谢谢!
最佳答案
form { display: flex; }
input[type=text] { flex-grow: 1; }
<form>
<input type="text">
<input type="button" value="Button text">
</form>
关于html - 在 TextBox 旁边放置一个 Button,总宽度为 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31648052/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!