I found the following CSS:
@media print {
.button:hover {
background: #ACDD4A;
}
}
What would be its possible use?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Looks like whoever wrote that simply doesn’t understand the concept of printing — I don’t know of any paged media that supports hover interaction 🙂
Even if the intent was to override a different
.button:hoverrule in the main (screen) stylesheet, it’s still useless anyway, as you may have surmised.