Media Query Working On Chrome But Not On Mobile
this is a piece of my CSS: @media (max-width: 800px) { body { background:black; background-image:none; font-size:30px; } #logo { width
Solution 1:
You should add this meta tag in <head></head>
. More information from MDN
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Post a Comment for "Media Query Working On Chrome But Not On Mobile"