针对iPhone 5&画像中的5S&景观问题

时间:2017-04-16 12:38:55

标签: javascript html5 css3 responsive-design media-queries

我试图隐藏iPhone 5中的一些元素。画像中的5S&风景,但它影响所有的iPhone设备,下面是代码。

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) { 

span.hmlabel{
display:none;
}

}

1 个答案:

答案 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;
  } 
}