Cita: Y la position absolute no me funciona con el IE
¿Estás seguro?i fíjate que ni pregunto si hablas de ie6 o ie7
Prueba lo siguiente:
Código hrml:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es-es">
<head>
<title>kseso? jugando con css</title>
<style type="text/css">
* {margin: 0; padding: 0; border: 0; position: relative;}
* html, * body { height: 100%; overflow:auto;}
html, body {
background-color: #cdcdcd;
}
#container {
margin:10px auto;
width:480px;
}
#container img.principal {
left:0;
position:relative;
top:0;
}
.play {
position:absolute;
left:50%;
top:50%;
margin-left: -22px;
margin-top: -22px;
}
</style>
</head>
<body>
<div id="container">
<img class="principal" src="http://share.skype.com/sites/es/skype/skype32ready.jpg" alt="una imagen" />
<a class="play" href="#"><img src="http://www.aulaclic.es/articulos/graficos/play.gif" alt="#" /></a>
</div>
</body>
</html>
P.D.: corrijo el código del #2. La clase tiene que ir en el enlace, no la imagen del enlace.