Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/01/2012, 14:59
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 15 años, 10 meses
Puntos: 1012
Respuesta: Maquetación falla en Iexplore y Chrome

si no quieres scroll horizontal, en body{overflow-x:hidden;}. pero si lo que quieres es que la imagen se adapte al ancho de pantalla
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; http-equiv="Content-Type" charset=utf-8"/>
<title></title>
<style type="text/css">
html {
display: block;
}

body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}

#fondo {
position: fixed;
left: 0;
top: 0;
width: 100%;
min-width: 700px;
z-index: -1;
}
</style>
</head>
<body>

<img id="fondo" src="fondo.png" alt="" />

</body>
</html>
lo del menú no lo sé, no tengo ie en esta maquina
__________________
if(ViolenciaDeGénero) {alert('MUJER ASESINADA');}

Última edición por IsaBelM; 05/01/2012 a las 15:11