When you apply a colour to your page's body via CSS:
body
{
color: #FFA;
}
The colour is inherited by all sorts of tags such as <i>
, <b>
, <span>
, etc.
However it isn't inherited by <a>
tags.
Why is this?
When you apply a colour to your page's body via CSS:
body
{
color: #FFA;
}
The colour is inherited by all sorts of tags such as <i>
, <b>
, <span>
, etc.
However it isn't inherited by <a>
tags.
Why is this?