A continuación este es mi código:
<table border="1"> <tr> <td> Prueba </td> </tr> </table>
Posted 03 December 2012 - 08:04 AM
<table border="1"> <tr> <td> Prueba </td> </tr> </table>
Posted 03 December 2012 - 11:28 AM
Luis Guillermo Trejo, on 03 December 2012 - 08:04 AM, said:
<table border="1"> <tr> <td> Prueba </td> </tr> </table>
<table style="border: 1px solid #000;"> <tr> <td> Prueba </td> </tr> </table>
Posted 09 December 2012 - 12:30 PM
Luis Guillermo Trejo, on 03 December 2012 - 08:04 AM, said:
<table border="1"> <tr> <td> Prueba </td> </tr> </table>
<table class="tabla-con-bordes"> ... </table>
table.tabla-con-bordes
{
border: 1px solid #000;
}