Skeleton icon indicating copy to clipboard operation
Skeleton copied to clipboard

Change the default link color to inherit.

Open EminezArtus opened this issue 7 years ago • 1 comments

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! :)

EminezArtus avatar May 23 '17 21:05 EminezArtus

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.

ntrupin avatar Aug 20 '18 01:08 ntrupin