Added this line in index.html:
<link href="css/style.css" media="all "rel="stylesheet" type="text/css" />
And this is my Media Query CSS:
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
#mapArea .white span {
width: 100px;
}
}
But when i check it in browser, don't working. What's my problem? How can i fix it?
(Tested all modern browsers)
<link rel="stylesheet" type="text/css" href="css/style.css">