Not sure what's involved, but I'd like to print a form that uses textarea tags. Sometimes the text within overflows, and partial text shows up in the print-out.
I'd like the stylesheet to remove the textarea tags, yet still show all the text.
When I use
both the textarea and its text disappear.
(I'm aware this could be 1000 times harder than it sounds)
I'd like the stylesheet to remove the textarea tags, yet still show all the text.
When I use
Code:
<STYLE>
@media print {
.hideonprint { display: none; }
}
</STYLE>
<TEXTAREA CLASS="hideonprint">hello!</TEXTAREA>
(I'm aware this could be 1000 times harder than it sounds)