모든 테이블에 대해 정의 된 다음 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;
}