【发布时间】:2022-11-30 17:53:59
【问题描述】:
`
@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");
}
`
文件:screen_layout_small.css `
@charset "UTF-8";
body {
background-color: red;
}
`
当 url("screen_layout_small.css") 不在@media 中时它会工作(当它不在响应式命令中时工作??)
加载 css 文件 screen_layout_small.css 当大小最小为 500 或更大时加载 screen_layout_small.css
顺便说一句,我使用 min-with 还是 max-with 并不重要。 该文件不会在@media 中加载!!!
【问题讨论】:
-
这回答了你的问题了吗? @import styles not working in a media query