Ver Mensaje Individual
  #5 (permalink)  
Antiguo 18/07/2011, 01:49
MiGoBi
 
Fecha de Ingreso: mayo-2011
Mensajes: 60
Antigüedad: 13 años
Puntos: 1
Respuesta: Problema centrando el contenido de un fieldset

Funciona perfectamente! Muchas gracias!
Investigando por ahí he encontrado otra forma:
CSS
Código:
div.centrado
{
    text-align: center;
}

div.centrado table 
{
    margin: 0 auto;
    text-align: left;
}
HTML
Código HTML:
<div class="centrado">
<table>
<tr>
</tr>
</table>
</div>