lundi 20 avril 2015

Media queries and Safari

Here's my index.html :

<html>
<head>
    <title>My Website</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width">

    <link rel="stylesheet" media="screen and (max-resolution: 96dpi)" type="text/css" href="css/normal.css"/>
    <link rel="stylesheet" media="screen and (min-resolution: 97dpi) and (max-resolution: 192dpi)" type="text/css" href="css/medium.css"/>
    <link rel="stylesheet" media="screen and (min-resolution: 193dpi)" type="text/css" href="css/hi.css"/>

This works fine on Chrome and Firefox (I don't care IE !) but not in Safari. How should I correct this ?

Thanks

Aucun commentaire:

Enregistrer un commentaire