我想覆盖为所有表定义的以下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;
}