`
@charset "UTF-8";
/* inport the basis style page */
@import url("body.css");
/* why is this not working???? */
/* import alternative style 500px*/
@media (min-width: 500px){
@import url("screen_layout_small.css");
}
`
文件:屏幕布局_小. css
@charset "UTF-8";
body {
background-color: red;
}
`
当URL(“screen_layout_small.css”)不在@媒体中时,它不起作用(当它不在响应命令中时,它起作用)
加载css文件screen_layout_small.css(当大小最小为500或更大时),然后加载screen_layout_small.css
顺便说一下,它不mather如果我使用最小或最大与。文件不加载在@媒体!!!
2条答案
按热度按时间3htmauhk1#
我认为错误出在语法上。
mxg2im7a2#
我认为您使用了错误的语法。应该是:
因此,在您的情况下,它应该是: