需要一些帮助.
在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; } }