Ver Mensaje Individual
  #7 (permalink)  
Antiguo 05/06/2010, 23:35
pistonasos
 
Fecha de Ingreso: julio-2009
Ubicación: La Plata
Mensajes: 233
Antigüedad: 14 años, 10 meses
Puntos: 8
Respuesta: Alinear Horizontalmente Tag Tbody

Hola de nuevo, muchìsimas gracias, ya lo solucionè.Era cosa de penzar un poquito nomàs......jejejejej, que nabo de mi parte.
PD:Lo que hice fue lo siguiente:
Código:
<table summary="Menu Desplegable." cellspacing="0px">
   <thead>
      <tr>
         <th><i>Enlace 0</i></th>
          <td><input type="button" value="▼" onclick="visibilidad('contabla0')"/></td>
         <th><i>Enlace 01</i></th>
          <td><input type="button" value="▼" onclick="visibilidad('contabla01')"/></td>
 <th><i>Enlace 02</i></th>
          <td><input type="button" value="▼" onclick="visibilidad('contabla02')"/></td>
          <th><i>Enlace 03</i></th>
          <td><input type="button" value="▼" onclick="visibilidad('contabla03')"/></td>
      </tr>
   </thead>
<tr>
 <td colspan="1">
  <table cellspacing="0px" id="contabla0">
   <tbody>
   </tbody>
  </table>
 </td>
 <td></td>
 <td colspan="1">
  <table cellspacing="0px" id="contabla01">
   <tbody>
   </tbody>
  </table>
 </td>
 <td></td>
 <td colspan="1">
  <table cellspacing="0px" id="contabla02">
   <tbody>
   </tbody>
  </table>
 </td>
 <td></td>
 <td colspan="1">
  <table cellspacing="0px" id="contabla03">
   <tbody>
   </tbody>
  </table>
 </td>
 <td></td>
</tr>
</tbody>
</td>
</table>