Is it possible to disable hover effects on a specific CSS element during Print Preview and when printing a page? For example, if I have the following code:
.this-thing:hover {
/* something magical */
}
I want to prevent the hover effect defined in .this-thing
from showing up in Print Preview or on the printed page. Is there a way to achieve this using only CSS?
It's important to note that I do not want to know what the actual styles are within /* something magical */
in order to disable them using @media print
.