我正在尝试为iphone 4和galaxy note 2提供不同的CSS样式。但无论我尝试用于iphone 4还是在笔记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
}
请帮帮我
答案 0 :(得分:0)
max-width
的{p> iphone 4
应为480
而不是640px
。