HTML CSS examples for CSS Layout:Responsive Media
Change background in media queries
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> div {<!--from ww w .j a v a 2s. c o m--> background:black; color:Chartreuse; } @media only screen and (max-width: 450px){ div { background:green; } </style> </head> <body> <div> Lorem ips </div> </body> </html>