标签: html css markup
当您通过CSS将颜色应用于页面的主体时:
body { color: #FFA; }
颜色由各种标签继承,例如<i>,<b>,<span>等。
<i>
<b>
<span>
但它不会被<a>标记继承。
<a>
为什么会这样?