06/12/2008, 18:23
|
| | | Fecha de Ingreso: octubre-2008
Mensajes: 389
Antigüedad: 16 años, 1 mes Puntos: 9 | |
Respuesta: ¿Como hacer una web para cualquier tipo de monitor en dreamweaver?
Código:
<head>
<style type="text/css">
<!--
html, body {
height: 100%;
width: 100%;
}
#contenido {
width:982px; (<- pones un tamaño a eleccion, incluso puede ser un porcentaje)
margin:auto;
}
-->
</style>
</head>
<body><div id="contenido">Contenido de tu web</div></body>
|