Possible Duplicate:
What is the difference between max-device-width and max-width for mobile web?
For instance, this website:
http://8faces.com/ uses max-width.
This tutorial uses max-device-width:
Example:
@media screen and (max-device-width: 480px) {
.column {
float: none;
}
}
What's the difference between them? Do they work in Android, iOS, iPad, etc?