You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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! :)
The text was updated successfully, but these errors were encountered:
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! :)
The text was updated successfully, but these errors were encountered: