Me gustaría anular el siguiente estilo CSS definido para todas las tablas:
table {
font-size: 12px;
width: 100%;
min-width: 400px;
display:inline-table;
}
Tengo una tabla específica con la clase llamada 'other'
.
Finalmente la decoración de la mesa debería verse así:
table.other {
font-size: 12px;
}
Así que necesito quito 3 propiedades: width
, min-width
ydisplay
Traté de restablecer con none
o auto
, pero no ayudó, me refiero a estos casos:
table.other {
width: auto;
min-width: auto;
display:auto;
}
table.other {
width: none;
min-width: none;
display:none;
}