CSS to show all textarea Content in HTML for Printing?
- by viatropos
What settings do I need to make it so when a user presses "print" in the browser, using a print.css stylesheet, the textareas display all their content (dynamic height) in the printed version, without using javascript?
I have tried this:
textarea {
overflow: visible;
float: none !important;
height: auto !important;
}
... but it doesn't work.
Any ideas?