Reputation: 1726
So here is my question on Mozilla support:
So I am testing my website in the Responsive Design-modus and there is no problem with the the CSS. But when I am at my phone the site shows me the CSS of desktop. He zooms in because of the viewport (I think). I do not know if this is the problem.
What I tried with the CSS:
@media screen and (min-width: {PixelNumber}px) { /* CSS stuf */ }
/*or*/
@media only screen and (min-width: {PixelNumber}px) { /* CSS stuf */ }
This is my html meta tag:
<meta name="viewport" property="viewport" content="width-device-width, initial-scale=0.9">
Upvotes: 0
Views: 620