@import styles not working in a media query

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

    Here is the solution:

    /* Everything 700px and lower */
    @import url("./700.css") only screen and (max-width: 700px);
    

提交回复
热议问题