我怎么能在没有任何滚动条的情况下在打印中打印完整的textarea内容......我的意思是当我在textarea中输入内容时,只显示文本区域的最后几行用于打印。 ....我实际上需要输入要打印的文本区域的所有内容........即textarea应自动调整大小以进行打印
<textarea class="notes1" style="height:150px;width:90%;" style="width:90%;border-height=150px;border-width:2px;" id="remarks" name="remarks" form="saveref" required></textarea>
.....这个正在使用的textarea代码和打印的css是....
textarea { border: 0; font: 14px Georgia, Serif; overflow: hidden; resize: none; }
答案 0 :(得分:0)
如果您只想使用CSS,请使用print media query。
@media print {
textarea {
height: //set to to max height you want
}
}