Reputation: 12064
I am using @viewport CSS3 (since viewport meta is not flexible enough for me). My design is 960px width. When I use the Google Chrome Dev tools and simulate Samsung S4, this works perfectly. When I open the page on my real Samsung S4 device in chrome navigator, it looks like this CSS rule was not applied (I emptied my Samsung S4 chrome cache)
Why does this work fine on the Chrome simulation but not the device?
@media screen and (min-width: 320px) {
@viewport {
width: 960px;
orientation:landscape;
}
}
Upvotes: 0
Views: 145