@import styles not working in a media query

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

    try that kind of code

    @import url("/inc/Styles/full.css") (min-width: 940px);
    

提交回复
热议问题