CSS选择器的结尾与last-of-type不兼容?

时间:2018-03-22 07:36:32

标签: html css

我可能完全错了,但我似乎无法将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;
}

0 个答案:

没有答案