Código HTML:
<img src="imagen.png" style="position: fixed; left: 0px; top: 0px;" onclick="this.style.visibility='hidden'" alt="" />
Alguna forma diferente de hacerlo para que funcione en IE?
| ||||
Respuesta: Ayudo con position: fixed en IE Internet Explorer simplemente no interpreta el valor fixed para la propiedad position =( Encontre este articulo, a ver si te sirve! http://www.adolfoabegg.com/solucion-...ernet-explorer Saludos. |
| ||||
Respuesta: Ayudo con position: fixed en IE Igual tienes un ejemplo en http://www.araudi.net/
__________________ Toroflix - movies. |
| ||||
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> |
Etiquetas: |