csslint.net正在为以下css抛出错误,我不知道为什么。对于我认为的CSS来说,这是很正常的。我从site获得了css。
body {
background: #eee !important;
}
.wrapper {
margin-top: 80px;
margin-bottom: 80px;
}
.form-signin {
max-width: 380px;
padding: 15px 35px 45px;
margin: 0 auto;
background-color: #fff;
border: 1px solid rgba(0,0,0,0.1);
.form-signin-heading,
.checkbox {
margin-bottom: 30px;
}
.form-control {
position: relative;
font-size: 16px;
height: auto;
padding: 10px;
@include box-sizing(border-box);
&:focus {
z-index: 2;
}
}
input[type="text"] {
margin-bottom: -1px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
input[type="password"] {
margin-bottom: 20px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}
有人能帮助我吗?我真的不知道它有什么问题。
答案 0 :(得分:2)
它格格不入,将其运行到任何带有颜色语法突出显示的编辑器中,您会发现一些规则缺少右括号或者它们嵌套不正确 - 您无法嵌套CSS中的常规规则(媒体查询是一个例外)。
您需要查看您的代码并确保您不会尝试嵌套规则。