Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/04/2010, 07:46
Avatar de Tecktonikrazy
Tecktonikrazy
 
Fecha de Ingreso: enero-2010
Mensajes: 224
Antigüedad: 14 años, 4 meses
Puntos: 3
De acuerdo Respuesta: Ayudo con position: fixed en IE

gracias, si sirve qedo asi:

Código HTML:
<style type="text/css">
* {margin:0; padding:0;}
html, body {width:100%; 
height:100%; 
overflow:hidden; 
}
#contenido {width:100%; 
height:100%;
overflow: auto;
} 
#fixed {
position:absolute;
width:200px;
height:200px;
border:1px solid #000;
background:#cff;
left:0%;
margin-left:0px;
top:0%;
margin-top:0px;
} 
</style>


<div id="fixed">

<img src="imagen.png">

</div>