0

在预编译资产时,我不断收到这样的错误:

Invalid CSS after "...margin-left:1px": expected "{", was ";line-height:16..."

所以我在css中发现了一个错误,它说“1margin-left:1px”......所以我修复了它。现在我遇到了另一个 CSS 错误:

Invalid CSS after "...ced2>li{margin:": expected expression (e.g. 1px, bold), was "!inherit}.item-..."

但我看不出这段代码有什么问题......这里是完整的(我认为就是这样):

.item-list.spaced>li,.item-list.spaced2>li{margin:!inherit}.item-list>li.item-orange{border-left-color:#eccb71}

我不确定这里有什么问题。有人知道吗?

4

2 回答 2

1

!inherit是无效值。可能你想写inherit !important

于 2013-04-30T18:43:25.470 回答
0

你可以试试这个:

item-list.spaced>li, .item-list.spaced2>li {
    margin: inherit;
}
.item-list>li.item-orange {
    border-left-color: #eccb71;
}
于 2013-04-30T18:55:44.670 回答