正如标题所说,我在第 88 行有一个无效的属性名称。这将是边距为 0 的 li。我也包含了周围的代码,因为我不知道它是否有帮助。
下面的部分也嵌套在另一个中。如果您希望我发布整个 sass 文件,请告诉我。
#sidebar
background: #DF314D
position: absolute
width: 240px
height: 100%
left: -240px
box-sizing: border-box
-moz-box-sizing: border-box
z-index: 50
ul
margin: 0
padding: 0
list-style: none
li
margin: 0
a
padding: 15px 20px
font-size: 16px
font-weight: 100
color: white
text-decoration: none
display: block
border-bottom: 1px solid #C9223D
-webkit-transition: background 0.3s ease-in-out
-moz-transition: background 0.3s ease-in-out
-ms-transition: background 0.3s ease-in-out
-o-transition: background 0.3s ease-in-out
transition: background 0.3s ease-in-out
&:hover a
background: #C9223D
编辑:如果我删除 a 部分,它会编译。但是我已经尝试删除它的所有规则并且不能将其缩小到特定的规则。
编辑2:我看了另一个帖子。我在我的代码中看不到任何缩进不一致的地方。