我有一个需要能够使用Rows属性调整大小的文本区域。我还希望能够调整文本区域内文本的行高。但是,这会导致IE9 和 IE10 中出现滚动条。有没有不涉及javascript的方法?
这个 JSFiddle 说明了这个问题:http: //jsfiddle.net/JYkAX/6/
这是html:
<textarea rows="3" class="textbox">No line-height
2
3</textarea>
<div class="separator"></div>
<textarea rows="3" class="textbox2">Lineheight = 20px
2
3</textarea>
这是CSS:
.textbox
{
overflow: auto;
}
.textbox2
{
overflow: auto;
line-height: 20px;
}
.separator
{
display: block;
height: 10px;
}