嘿,我对 ipad -3 的设计有点陌生。谁能指导我如何提前为 ipad-3.thanx 设置媒体查询
问问题
409 次
2 回答
1
新 iPad 的宽度和高度与第一台和第二台 iPad 相同,因此您只需应用相同的媒体查询:
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
.ipad-portrait { color: red; } /* your css rules for ipad portrait */
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {
.ipad-landscape { color: blue; } /* your css rules for ipad landscape */
}
于 2013-03-30T14:02:55.210 回答
0
@media screen and (device-aspect-ratio: 3/4) {
// your styles here
}
于 2013-03-30T13:52:33.773 回答