我可能完全错了,但我似乎无法将CSS附加到last-of-type
,并以“{1}}结尾”。
这是正确的方法吗?
编辑:我正在尝试概括我的代码并限制使用使用硬编码变量的[class*="name"]
。
:nth-child()
.form-group {
display: inline-block;
width: 100%;
padding: 10px 0;
}
.form-group .form-control {
font-family: 'Roboto', sans-serif;
width: 100%;
padding: 10px;
border: 1px solid #eee;
border-radius: 3px;
}
.form-group[class*="name"],
.form-group[class*="password"] {
width: 48%;
margin-right: 4%;
}
.form-group[class*="name"]:last-of-type, .form-group[class*="password"]:last-of-type {
margin-right: 0;
}