Reputation: 307
I'm learning HTML / CSS and wanted to know, how to hide the body background image for printing process with the use of media query?
Upvotes: 1
Views: 4406
Reputation: 889
And just in case you're not sure what the style should be, based on the information you've given, it would be:
@media print {
body{
background-image: none;
}
}
Best of luck with the rest of your learning!
Upvotes: 5
Reputation: 1454
This is a pretty basic media query, wrap your style inside this media query:
@media print {
// Your style here
}
Upvotes: 1