关于修改div字体颜色同时改变里面table中字体颜色的问题。
发布网友
发布时间:2022-05-15 18:01
我来回答
共1个回答
热心网友
时间:2024-02-26 02:33
给table的css加一句 color: inherit; 意思是从父元素继承
<html>
<head>
<style type="text/css">
.parent {
color:blue;
}
table {
color: inherit; /* 设置成从父元素继承 */
}
</style>
</head>
<body>
<div class="parent">
<table>
<tr>
<td>text</td>
</tr>
</table>
</div>
</body>
</html>