预期为RBRACE,但括号在那里?

时间:2018-09-18 16:03:30

标签: html css parsing formatting

“。topcontent { 预期在第97行第1行的RBRACE。”在我使用的CSS验证器中再次出现(代码美化)

有人曾经发生过这种情况吗?有人知道解决方法吗?它影响了大约一半的CSS。如果这是一个愚蠢的问题,我深表歉意。我是HTML和CSS的新手,但无法在论坛上找到具体答案。

  .content {
    width: 70%;
    float: left;

.topcontent {
    background-color: #FFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 3% 5%;
    margin-top: 2px;
}
.bottomcontent {
    background-color: #FFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 3% 5%;
    margin-top: 2px;
}

.postinfo{
    font-style: italic;
    color: #999;
    font-size: 90%;
}

.top-sidebar {
    width: 21%;
    float: left;
    background-color: #FFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 2% 0 2% 3%;
    padding: 2% 3%; 
}

.middle-sidebar {
    width: 21%;
    float: left;
    background-color: #FFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-left: 3%;
    margin-bottom: 2%;
    padding: 2% 3%;
}

.bottom-sidebar {
    width: 21%;
    float: left;
    background-color: #FFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-left: 3%;
    margin-bottom: 2%;
    padding: 2% 3%;
}
/* Body styling ends here */

.mainFooter {
    width: 100%;
    height: 40px;
    float: left;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #666;
    margin: 2% 0;
}

.mainFooter p {
    width: 92%;
    margin: 2% auto;
    color: #FFF;
}

谢谢你们!如果您需要其他信息,请告诉我。

1 个答案:

答案 0 :(得分:0)

.content声明缺少}大括号。您可以按如下方式更新它-

.content {
    width: 70%;
    float: left;
}