Bootstrap iPhone 5 Landscape Orientation Media Query Not Working -
i trying more detailed customizing bootstrap standard media queries.here code using target iphone 5 landscape orientation browsers:
/* iphone 5 in landscape -----------*/ @media screen , (min-width : 320px) , (max-width : 568px) , (orientation : landscape) { body { background-color:khaki; } } but not working ! can please let me know doing wrong?
@media screen , (device-width: 320px) , (device-height: 568px) , (-webkit-device-pixel-ratio: 2)
Comments
Post a Comment