Hola gente. Tengo el siguiente problema.
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>
encontes el thead me sale con la cabecera azul, por que asi lo tengo escrito en el css.
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>
pero nada sigue igual.
En el css tengo puesto
Alguna idea?