Why CSS dimensions doesn't work on low width?

46 Views Asked by At

i'm doing the responsibility of my page and i have a problem. When i write for example this:

@media (min-width: 321px) and (max-width: 580px) {
body {width: 100%; font-size: 15px;}}

dimensions dosen't work. I can't change any width, even font size. Only things like background-color work or margin-top/bottom, height... Chrome shows this,

The same things WORK in higher resolution. I have in my code:

<meta charset ="utf-8" name="viewport" content="width=device-width, initial-scale=1">

What's the problem?

0

There are 0 best solutions below