@import styles not working in a media query

前端 未结 7 1854
难免孤独
难免孤独 2020-12-06 16:20

I am trying to import a style based off a media query but the import is not being triggered If i put styles directly in the media query they are rendered to the page.

<
7条回答
  •  隐瞒了意图╮
    2020-12-06 16:48

    true statement

    @import ('filename.css') mediaType and (feature: value);
    

    example:

    @import (responsive.css) screen and (min-width: 320px) and (max-width: 480px);
    

    notice: if use @import for CSS file, this file should not attachment in tag. otherwise dose not work Styles.

提交回复
热议问题