在我的外部 css 文件中,我正在尝试使用导入加载 css ......但我无法有条件地导入 css 文件......
有什么办法吗?
我的尝试:
body {
background: url(../images/1024/css/bodyBg.jpg);
}
body > section > header{
background: url(../images/1024/css/headerBg.jpg) top repeat-x;
height: 93px;
border: solid black;
border-width: 5px 0;
}
@media screen and (max-width: 768px){
@import url(../styles/sedms.css); // i am not able to import...
}