Sunday 18 August 2019

Removing one child from the same class

If btn-row is a class and have 2 sub attributes both named btn-8 and you want to remove one of them this property then comes in handy
.btn-row a:nth-child(2)

 {
    display: none !important;
}