07/01/2005, 17:56
|
| | Fecha de Ingreso: enero-2005
Mensajes: 265
Antigüedad: 20 años, 1 mes Puntos: 1 | |
Código:
<html>
<style>
body {
width:100%;
margin:0;
padding:0;}
div {
max-width:1024px;
width:expression(document.body.clientWidth > 1024? "1024px": "auto" );
}
</style>
<body>
<div>
Contenido aquí
</div>
</body>
</html>
|