我想要一个可以删除桌子上所有样式的课程,但我无法让它工作:
这是我到目前为止所尝试的:
<html>
<head>
<link type="text/css" rel="stylesheet" href="../../css/css1.css" media="all" />
<link type="text/css" rel="stylesheet" href="../../css/css2.css" media="all" />
<link type="text/css" rel="stylesheet" href="../../css/css3.css" media="all" />
<link type="text/css" rel="stylesheet" href="../../css/css4.css" media="all" />
<link type="text/css" rel="stylesheet" href="../../css/css5.css" media="print" />
<style>
.nostyle table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
</style>
</head>
<body>
<div class="nostyle">
<table>
<!-- more table properties -->
</table>
</div>
</body>
</html>
我不知道为什么这不起作用:/
我的代码来自:如何删除表格的所有继承的 CSS 格式?