How to target ipad and iphone styles
Place the following code into your style.css file. Place any ipad or iphone specific styling between the brackets. /* iPads (landscape) ———– */ @media screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) { /* Styles */ } /* iPads (portrait) ———– */ @media screen and (min-width : 768px) and (max-width […]
Read More →