我希望将某些样式应用于智能手机,无论是纵向还是横向。
是否存在针对这两种情况的良好媒体查询?实际上我必须用两个媒体查询重复css:
.selector {
// smartphone portrait
@media (min-width: 320px}) and (max-width: 512px}) {
// stuff
}
// smartphone landscape
@media only screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
// same stuff
}
}
答案 0 :(得分:1)
我相信如果你创建一个媒体查询,其最小宽度是纵向手机屏幕宽度,最大宽度是横向手机屏幕宽度,无论方向如何,都应覆盖它。