I have these two elements:
<div class="navbar-header">
<a href="#" class="navbar-brand collapse-award"></a>
<a href="#" class="navbar-brand collapse-award"></a>
</div>
and I am trying to apply :first-child :last-child on these items, but its not working does first and last child only apply for list items ?
.navbar-header .collapse-award:first-child {
max-height: 50px;
}
.navbar-header .collapse-award:last-child {
max-height: 80px;
margin-top: -10px;
}