I'm doing a mobile website now and trying to target different devices using CSS3 media queries. Part of my code is as follows:
@media screen and (max-width:320px) {
body {
width: 320px;
}
/* some other style */
}
As you can see, I have to set the body width explicitly to make sure it doesn't show the width I set for desktop in my normal css, which is 920px. I'm wondering if there is any way that the body width can be set automatically to the device width and I don't need to set this manually every time I create a new @media
.
By the way, I also add the following code inside my head
tag:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />