分别为iphone 4和galaxy note 2的css

时间:2013-05-11 18:07:20

标签: css

我正在尝试为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
}

请帮帮我

1 个答案:

答案 0 :(得分:0)

max-width的{​​p> iphone 4应为480而不是640px