0

在我的外部 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... 
}
4

1 回答 1

1

正确的格式是

@import url(../styles/sedms.css) (max-width:768px);

见这里: http: //philarcher.org/diary/2011/importrules/

于 2013-04-16T15:48:26.140 回答