En una pagina uso un CSS, que tiene que todas las tablas tengan un estilo definido.
Pero necesito que algunas en especial no tengan ese estilo, sino que estean completamente en blanco, sin ninguna propiedad.
COmo puedo hacer esto?
Es decir, si yo pongo este codigo
Código HTML:
<table cellspacing="1"> <thead> <tr> <th>prueba</th> <th>prueba</th> <th>prueba</th> </tr> </thead> <tbody> <tr> <td>prueba</td> <td>prueba</td> <td>prueba</td> </tr> </tbody> </table>
pero que pasa si quiero que el thead, me aparezca normal??
He probado lo siguiente
Código HTML:
<table id="algunaid" cellspacing="1" class="noclass"> <thead> <tr> <th>prueba</th> <th>prueba</th> <th>prueba</th> </tr> </thead> <tbody> <tr> <td>prueba</td> <td>prueba</td> <td>prueba</td> </tr> </tbody> </table>
En el css tengo puesto
Código:
Alguna idea? .noclass{}