Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/06/2011, 02:04
Avatar de jomaruro
jomaruro
Colaborador
 
Fecha de Ingreso: junio-2002
Ubicación: Naboo
Mensajes: 5.442
Antigüedad: 21 años, 10 meses
Puntos: 361
Respuesta: Problema con ajuste de tabla

Cita:
Iniciado por dangerous14 Ver Mensaje
en el html tengo

Código HTML:
Ver original
  1. <p align="center"><table id="tablach" border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
  2. <tr>
  3. <td>newradius</td>
  4. <td>newradius</td>
  5. <td>newradius</td>
  6. </tr>
  7. <tr>
  8. <td>newradius</td>
  9. </tr>
  10. </p>

y en css

Código CSS:
Ver original
  1. #tabla12 {
  2. border-width: 1px;
  3. border-color: #FF00FF;
  4. background-color: black;
  5. color: white;
  6. top:160px;
  7. left:23%;
  8. width: 600px; height: 900px;
  9. }

pero ahora se fue hacia arriba
1º ¿Por qué utilizas tablas para maquetar? No son para eso.
2º En tu HTML tienes una tabla con id="tablach" que no está definida en el CSS.
3º En tu CSS tienes una "tabla12" que no figura en tu HTML.

¿Qué sentido tiene?

Saludos.