Answer the question
In order to leave comments, you need to log in
How to list :not pseudo-classes?
There is such a navigation bar: It is
necessary that when you hover, the links are highlighted in yellow and with a border. But not all. All except the last two (basket and search).
Tried via pseudo-class :not :
ul.navigation li:not(:last-child) a:hover {
border-bottom:#fce38a 3rem solid;
color:#fce38a;
}
Answer the question
In order to leave comments, you need to log in
ul.navigation li:not(:nth-last-child(-n+2)) a:hover{
border-bottom:#fce38a 3rem solid;
color:#fce38a;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question