我想覆盖下面为所有表定义的 CSS 样式:
table {
font-size: 12px;
width: 100%;
min-width: 400px;
display:inline-table;
}
我有具体的表与类称为 'other'
。
最后,桌子的装饰应该是这样的:
table.other {
font-size: 12px;
}
所以我需要删除3个属性: width
,min-width
和 display
我尝试用 none
或 auto
重置,但没有用,我的意思是这些情况:
table.other {
width: auto;
min-width: auto;
display:auto;
}
table.other {
width: none;
min-width: none;
display:none;
}