私のextranel 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...
}