我在表单中使用固定大小的文本区域从用户那里获取输入。即使我已将文本区域的大小调整属性设置为 none,滚动条仍会显示,如图所示。我没有希望滚动条显示在文本区域中。
该代码在 Firefox 和 chrome 中正常工作,虽然没有任何错误,但在 IE 中却不是..
HTML 代码...
<label for="qual" class="label">Description and Quantification of Impact to the extend possible:</label>
<textarea id="qual" rows="5" cols="50" style="resize:none" placeholder="Description and Qualification"></textarea><br><br>
CSS 代码...
.label
{
float: left;
width:120px;
padding:10px 30px;
<!--font-weight:bold;-->
}
textarea
{
<!--margin-bottom:90px;
margin-top:50px";-->
vertical-align:top;
}
.textarea
{
resize :none;
border: none;
width: 100%;
-webkit-box-sizing: border-box; <!-- <=iOS4, <= Android 2.3 */-->
-moz-box-sizing: border-box; <!-- FF1+ -->
box-sizing: border-box; <!-- Chrome, IE8, Opera, Safari 5.1-->
}
我在 IE 8 中得到的输出..
即使我不希望出现未选择的滚动条,它仍然会显示..
我尝试将代码放在 jsfiddle 中,但它不会在 IE 8 中打开而不会出现错误,这就是我在此处发布代码和图片的原因..