我正在尝试为 iphone 4 和 Galaxy Note 2 提供不同的 CSS 样式。但无论我为 iphone 4 尝试什么,也可以在 note 2 上运行,我无法为其提供不同的 css。这是我要按照我放置的顺序做的事情
@media screen and (min-width : 360px) and (max-width : 640px) and (orientation: portrait) {
// note 2 portrait code
}
@media screen and (min-width : 360px) and (max-width : 640px) and (orientation: landscape) {
// note 2 landscape code
}
@media screen and (min-width : 320px) and (max-width : 640px) and (orientation: portrait) {
// iphone 4 portrait code
}
@media screen and (min-width : 320px) and (max-width : 640px) and (orientation: landscape) {
// iphone 4 landscape code
}
请帮帮我