Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/05/2011, 10:09
lasnv
 
Fecha de Ingreso: mayo-2011
Ubicación: Bogota
Mensajes: 18
Antigüedad: 13 años
Puntos: 2
Mensaje Respuesta: Adaptar web a distintas resoluciones con Dreamweaver 8

Yo utilizo este método cuando hago paginas auto ajustables.

Código:
<html>
<head>
<title>Pagina AutoAjustable</title>
<style type="text/css">
     body{margin:0; padding:0;}
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border:solid #666 1px;">
  <tr>
    <td width="200">Contenido Fijo</td>
    <td>Contenido autoAjustable</td>
    <td width="200">Contenido Fijo</td>
  </tr>
</table>
</body>
</html>
Puedes meter todo ahi o simplemente hacerte una idea...