chr*_*ris 24 css inheritance css-tables
由于页面的CSS文件,我有一个具有某种样式的表(它有蓝色边框等等).
有没有一种简单的方法来删除该特定表的CSS?我正在思考像命令这样的命令:
style="nostyle"
Run Code Online (Sandbox Code Playgroud)
有这样的事吗?
Kri*_*nck 39
试试这个.
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
Run Code Online (Sandbox Code Playgroud)