我正在使用
单独编写用于设备解析的css @media only screen
and (min-width: 320px)
and (max-width: 480px)
and (orientation: portrait) {
// css goes here
}
和
的设备分辨率 @media only screen
and (min-width: 360px)
and (max-width: 640px)
and (orientation: portrait) {
// css goes here
}
但360px*640(orientation:portrait)
css不起作用。它采用默认的320px * 480px CSS。
我如何编写适用于360px*640(orientation:portrait)
设备的css。
答案 0 :(得分:1)
试试这个:
@media only screen
and (min-width: 320px)
and (max-width: 360px)
and (orientation: portrait) {
// 360px width goes here
}
@media only screen
and (max-width: 320px)
and (orientation: portrait) {
// 320px width goes here
}