table 不从 body 继承颜色 css 属性

table does not inherit color css property from body

我看到 color 样式继承自 body,用于 http://getbootstrap.com/css/ 的 table。 但是,当我使用它时,它不会被继承并且应用 -webkit-text 什么时候停止继承?我有一个 div 包围着这个 table,它具有继承自 bodycolor

color 元素继承给所有子元素,但 border-color 属性 覆盖它。 (来源:http://webdesign.about.com/od/styleproperties/p/blspcolor.htm

此外,为了避免出现 -webkit-text-issue,您应该将 <!DOCTYPE> 更改为

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">

(来源:Color not being inherited by child elements?