Tengo otro problema. La galeria funciona barbara por si sola, pero cuando la meto dentro de un div posicionado relativamente no se ve en IE. Osea, en IE la galeria queda debajo del div que lo contiene (el cual tiene un color de fondo, por lo que tapa la galeria)
Código:
<html>
<head>
<title>Thumbnails Gallery</title>
<style type="text/css">
<!--
#thumbnail dl {
border: 1px solid #f90;
width: 170px;
padding: 10px;
margin-right: 10px;
background-color: #fc0;
float: left;
}
#content {
position: relative;
width: auto;
background-color: #fc3;
}
-->
</style>
</head>
<body>
<div id="content">
<div id="thumbnail">
<dl>
<dt><img src="image1_thumb.jpg" width="160" height="120" /></dt>
<dd><a href="image1.jpg">Image 1</a></dd>
</dl>
<dl>
<dt><img src="image2_thumb.jpg" width="160" height="120" /></dt>
<dd><a href="image2.jpg">Image 2</a></dd>
</dl>
<dl>
<dt><img src="image3_thumb.jpg" width="160" height="120" /></dt>
<dd><a href="image3.jpg">Image 3</a></dd>
</dl>
<div style="clear:both">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed felis metus, egestas sed, vulputate vitae, vestibulum eget, leo. Phasellus fringilla mi vitae lectus. Nam eu magna. Nullam vel tellus. Praesent bibendum. Fusce sit amet erat sit amet augue pulvinar placerat. Praesent porttitor magna a metus. Nullam magna arcu, convallis eu, tempus eget, volutpat non, enim. Donec sem ante, semper quis, aliquet eu, sollicitudin id, magna. Sed ut tellus.
</div>
</div>
</body>
</html>
Miren el codigo en Firefox o Opera y despues en IE y van a ver lo que quiero decir (prueben sacarle el color de fondo al div #content")
Alguien sabe porque pasa esto?