@import styles not working in a media query

前端 未结 7 1841
难免孤独
难免孤独 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:54

    MDN states that @import cannot be nested and must come before all other declarations except @charset.

    The syntax is as follows:

    @import url;
    @import url list-of-media-queries;
    

    https://developer.mozilla.org/en-US/docs/Web/CSS/@import

    0 讨论(0)
提交回复
热议问题