MEZesUBI
MEZesUBI

Reputation: 307

HTML/CSS hide background image for printing with CSS media query

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

Answers (2)

iteles
iteles

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

Antoine Combes
Antoine Combes

Reputation: 1454

This is a pretty basic media query, wrap your style inside this media query:

@media print {
    // Your style here
}

Upvotes: 1

Related Questions