坚持css解析错误

时间:2016-06-05 21:25:39

标签: css css3

我不断从W3C css验证中得到解析错误,但无法弄清楚我的代码有什么问题。我在验证时选择了CSS标签3。

@media (max-width: 767px) {
    .center {
        margin: auto 0;
        width: 80%;
    }
}

1 个答案:

答案 0 :(得分:0)

根据W3Schools,您必须声明mediatype。标准格式为:

@media not|only mediatype and (media feature) {
    CSS-Code;
}

您的示例可能如下所示:

@media screen and (max-width: 767px) {
    .center {
        margin: auto 0;
        width: 80%;
    }
}

请点击以上链接获取更多信息。