如何在IE中垂直調整我的textarea大小?Textarea在ie中調整垂直大小
我做了調整大小:垂直,它在Firefox中運行良好,但在IE中它不起作用。那麼對此有什麼選擇?
另外,如果我想打印頁面,那麼我需要textarea來擴展和打印整個內容。我應該使用什麼?
編輯 -
我的CSS:
@media screen {
textarea {
resize: vertical;
overflow: auto;
border: 1px #999999 solid;
padding: 6px;
background: #ffffff url('../images/field_bg.png') repeat-x bottom;
width: 400px;
height: 100px;
}
}
@media print {
textarea {
border: 1px #999999 solid;
padding: 6px;
background-color: #ffffff;
background-image : none;
width: 400px;
height: auto;
overflow: visible;
}
}
.field {
display: inline;
vertical-align: top;
width: 25%;
}
HTML -
<div class="field">
<textarea id="xp">
some text here
</textarea>
</div>
編輯 -
我仍然無法弄清楚這個解決方案。任何人都可以幫忙嗎?
http://caniuse.com/#feat=css-resize – KyleMit 2015-03-28 15:23:42