2013-10-27 4 views
0

Я добавляю эти медиазапросы внутри <head> моей страницы:Как пишут СМИ запросы

<style type="text/css"> 

    @media only screen 
    and (min-device-width : 320px) 
    and (max-device-width : 480px) { 
     @import url('assets/css/style-smartphones.css'); 
    } 

    /* iPads (portrait and landscape) ----------- */ 
    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) { 
     @import url('assets/css/style-tablet.css'); 
    } 

    /* Desktops and laptops ----------- */ 
    @media only screen 
    and (min-width : 1224px) { 
     @import url('assets/css/style-desktop.css') 
    } 

</style> 

Но таблиц стилей файлы не загружаются. Я дважды проверял пути, и они верны ... Что мне не хватает?

ответ

0

Зафиксировано себя таким образом:

@import url('assets/css/style-smartphones.css') only screen 
      and (min-device-width : 320px) and (max-device-width : 480px); 
    @import url('assets/css/style-tablet.css') only screen 
      and (min-device-width : 768px) and (max-device-width : 1024px); 
    @import url('assets/css/style-desktop.css') only screen 
      and (min-width : 1224px); 
Смежные вопросы