似乎无法拉伸ie9 中的绝对输入字段(使用顶部、左侧、右侧或底部 CSS 规则)。更不用说ie8或ie7了。
问问题
180 次
1 回答
0
嗨,现在你可以更改你的代码,如果可能的话,并label tag
在你的表单中添加不使用position
像这样
html
<h1>Testing ie input field, absolutely positioned to fill container</h1>
<div class="container">
<label><input class="field" type="text" /></label>
</div>
CSS
.container {
background-color:green;
width:300px;
height:100px;
}
label{
margin:5px;
display:block;
}
.field {
width:100%;
border:none;
margin:0px; padding:0px;
}
于 2012-10-03T06:53:37.703 回答