I'm trying to target the iPhone 6 Plus in the landscape view.
This is my media query:
@media only screen and (max-device-width : 960px) and (orientation : landscape) {#div { position:fixed;
bottom: 0px;
width:100%;
left:0px;
right:0px;
height:60px;}
Somehow the iPad takes this media query too. What did I understand wrong?
Thanks for any help!