我试图隐藏iPhone 5中的一些元素。画像中的5S&风景,但它影响所有的iPhone设备,下面是代码。
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px) {
span.hmlabel{
display:none;
}
}
答案 0 :(得分:0)
I just tired like this works perfect.
@media screen and (device-aspect-ratio: 40/71) {
span.hmlabel{
display:none;
}
}
@media screen and (device-aspect-ratio: 71/40) {
span.hmlabel{
display:none;
}
}