Why this simple css queries does not change background color
I want to test the css queries (min-width & max-width) and I wrote this: <html> <head> <style> body{ background-color:red; } @media only screen and (max-width: 600px){ body{ backgroud-color:#F00; } } @media only screen and (max-width: 900px) and (min-width: 600px){ body{ backgroud-color:#FF0; } } @media only screen and (min-width: 900px){ body{ backgroud-color:#0F0; } } </style> </head>… Read More Why this simple css queries does not change background color