我正在使用<input>
标记创建用户界面,特别是text
和button
。
我想要的界面是两个文本框在彼此的顶部,一个按钮是堆叠框右侧两个文本框的高度。
我可以使用以下HTML和CSS实现此布局,但输入元素似乎不符合样式表中定义的高度。
HTML:
<!doctype html>
<div id = "container">
<div class = "control">
<input type = "text">
<input type = "text">
</div>
<div class = "control">
<input type = "button">
</div>
</div>
CSS:
/* dimensions are simplified here */
#container {
width: 300px;
}
.control {
float: left;
height: 200px;
}
.control input[type=text] {
height: 50%; /* would expect each box to be 100px tall */
clear: both;
width: auto;
}
.control input[type=button] {
height:100%; /*would expect this button to be the same height as both boxes */
width: auto;
}
我尝试过类似的问题,例如发布here的问题,但无济于事。我的输入确实遵循我用上图所示的模式,但它们似乎不尊重高度并且未对齐。 HTML 5控件是否存在固有的不相称之处?
答案 0 :(得分:1)
我认为input[type=text]
与[{1}}
因此,您可以普遍设置框模型,也可以只设置input[type=button]
<强> CSS 强>
input[type=text]
答案 1 :(得分:0)
这就是你要找的东西
小提琴: fiddle
HTML
<div id = "container">
<div class = "control">
<input type = "text"/>
<br/>
<input type = "text"/>
</div>
<div class = "control">
<input type = "button"/>
</div>
</div>
CSS
#contaner {
width: 300px;
}
.control {
float: left;
height: 200px;
}
.control input[type=text] {
clear: both;
width: auto;
}
.control input[type=button] {
height:25%;
width: auto;
}