Trying to apply a margin-top to all labels except the first one in a row using the :not() and :nth-child selectors. Having trouble with my selector, can anyone help?
.form-group:not(:nth-child(1)) + .label {
margin-top: 20px;
}
<div class="form-group">
<label class="label">
</div>
<div class="form-group">
<label class="label"> <!-- This label should have margin-top applied, but not the first label -->
</div>