Howdy,
I love this neat thing found on css-tricks:
a:active {
position: relative;
top: 1px;
}
Every link gives a little trigger-response.
However, I want almost all my links to do that, except the ones inside of .children
.
Can I create an exception like :not
(from jQuery) within CSS?
Thank you for your help!