CSS lint解析错误 - 预期LBRACE错误

时间:2015-02-05 15:36:54

标签: parsing keyframe csslint

需要一些帮助。

在CSS lint中查看我的CSS时,他们会不断报告解析错误,即预期的LBRACE错误' 以下是该问题的屏幕截图:screenshot

他们在我的结束时显示问题。我多次检查了我的代码,但我无法找到,可能是什么问题。

如果我更改了关键帧前缀顺序,我意识到错误会显示在不同的行上(因此并不总是在结束括号中)

这是我的代码,请看看,如果有人在那里看到错误,请告诉我,是什么,请提前感谢您:

.flat-desktop-content {
    background: url("../images/flat-desktop-content.svg") no-repeat scroll 0 0 transparent;
    background-size: cover;
    width: 360px;
    height: 290px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    -webkit-animation: flat-desktop 6s ease infinite;
       -moz-animation: flat-desktop 6s ease infinite;
            animation: flat-desktop 6s ease infinite;
}

@-webkit-keyframes flat-desktop {
    0% { background-position: 0 0; }
    50% { background-position: 0 -234px;}
    0% { background-position: 0 0; }
}

@-moz-keyframes flat-desktop {
    0% { background-position: 0 0; }
    50% { background-position: 0 -234px;}
    0% { background-position: 0 0; }
}

@keyframes flat-desktop {
    0% { background-position: 0 0; }
    50% { background-position: 0 -234px; }
    0% { background-position: 0 0; }
}​

2 个答案:

答案 0 :(得分:4)

CSSLint不应该受到责备。

问题是代码中存在导致错误的不可见字符。只需将光标设置为有问题的行和列,然后点击退格键以清除有问题的字符。

如果您将以下代码复制到csslint,则不会收到错误,因为我删除了有问题的字符。

@keyframes monkey {
    0% { background-position: 0 0; }
    50% { background-position: 0 -100px; }
}

答案 1 :(得分:0)

您正在使用似乎有错误的csslint.net。我把你的例子简化了,直到我留下了这个完全有效的CSS的短片段,但仍然抛出了错误。试试吧......

@keyframes monkey {
    0% { background-position: 0 0; }
    50% { background-position: 0 -100px; }
}​