Skeleton
Skeleton copied to clipboard
Change the default link color to inherit.
Hello. From my experience you can save a ton of time by settings "a {color:inherit;}" that way the body tells the child what color the links should be or the div the links are in, etc.
Right now you would have to do this:
<div style="color:#333">test <a href="#" style="color:#333">test</a></div>
But we could be doing:
<div style="color:#333">test <a href="#">test</a></div>
Just a thought! :)
Links are meant to stand out and therefore should not inherit color from the parents.
While a good suggestion, a CSS framework should not have it standardized. As you showed, it is easily implementable on your own.