how to fix CSS parse error: Semicolon or block is expected?
how to fix CSS parse error: Semicolon or block is expected?
您好,我想知道如何修复以下 CSS 代码错误。当我试图缩小它时,我得到了这个错误。
`
522 |.the-icons.span3 .i-name {
523 | padding-left: 40px;
524 |}
525 |@media only screen and min-width: 768px and max-width: 959px {
---------------------------------------^
526 | .the-icons.span3 {
527 | width: 33.333%;
528 | }`
这样添加。
@media screen and (min-width:768px) and (max-width:959px){
.the-icons.span3 {
width: 33.333%;
}
}
您好,我想知道如何修复以下 CSS 代码错误。当我试图缩小它时,我得到了这个错误。
`
522 |.the-icons.span3 .i-name {
523 | padding-left: 40px;
524 |}
525 |@media only screen and min-width: 768px and max-width: 959px {
---------------------------------------^
526 | .the-icons.span3 {
527 | width: 33.333%;
528 | }`
这样添加。
@media screen and (min-width:768px) and (max-width:959px){
.the-icons.span3 {
width: 33.333%;
}
}