Is there a way to print the entire contents of a textarea without any scroll bars, so that all text entered is visible? Currently, only the last few lines are showing when printed. I need the textarea to automatically resize for printing.
<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>
This is the code for the textarea being used, along with the CSS for printing:
textarea { border: 0; font: 14px Georgia, Serif; overflow: hidden; resize: none; }