I would like to set the fixed with for mobile devices on 320px - I would like to want to look my website always the same as on the screen for 320px.
I have tried to set up the fixed width on 320px, like this:
@media (max-width: 320px) {
body {
width: 320px;
}
}
But this code doesn't work me. Is there any way to do it?