Hi,
I am using below css for iPhone 6 Plus but it's not working when I browse from my iPhone 6 Plus..
when I say not working I mean the h1 font size and color is not changing.
what's wrong please..
/* iPhone 6 Plus Portrait */
@media only screen
and (min-device-width : 414px)
and (max-device-width : 736px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio : 3)
{
h1
{
font-family: 'Open Sans Condensed', sans-serif;
font-size: small;
font-weight: bold;
padding: 2% 0;
margin: 10px 0;
color: #FF0000;
}
}
/* iPhone 6 Plus Landscape */
@media only screen
and (min-device-width : 414px)
and (max-device-width : 736px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio : 3)
{
h1
{
font-family: 'Open Sans Condensed', sans-serif;
font-size: small;
font-weight: bold;
padding: 2% 0;
margin: 10px 0;
color: #FF0000;
}
}
Thanks,
Jassim