PaulPeterson1
3 years agoQrew Assistant Captain
Inline CSS Help please
I am working on a document that will be printed by some of the end users. I found <div style="break-after:page"> </div> to force a page break where it is needed, but have not been able to find an inline CSS equivalent to prevent printing some of the form elements. Any suggestions to convert the following into inline CSS?
I'm not worried about using the noprint class, just need to find the style attribute that will not print certain form elements.
------------------------------
Paul Peterson
------------------------------
@media print {
.noprint {
visibility: hidden;
}
}
------------------------------
Paul Peterson
------------------------------