Hola a todos, espero que me podais resolver esta duda/error, estoy haciendo una web donde el contenido esta dentro de tablas, son fichas de discos de música con su foto y el contenido a la derecha de la foto y debajo de ella. El problema esta en que el contenido de la derecha se alinea bien en firefox y en chrome, pero no en internet explorer, aqui os pongo el codigo html/css de las tablas y unas capturas, gracias de antemano a todos.
__________________________________________________ ____________
css
.brett{
background-image:url(../img/fondo_brett.png);
border: 0px;
margin: 0px;
background-color:#000;
background-position:top;
background-repeat:repeat-x;
background-attachment:fixed;
color:#FFF;
}
#contenedor_disco{
position:absolute;
width:780px;
left:50%;
margin-left:-390px;
}
.table{
width:780px;
border-bottom:2px solid #fff;
margin-top:20px;
}
.txt{
margin: 18px;
}
__________________________________________________ _____________
html
<body class="brett">
<div id="contenedor_disco">
<table class="table">
<tr>
<td width="240" align="center"><img src="../img/brett_anderson_sampler.gif" alt="Brett Anderson Sampler" title="Brett Anderson Sampler" width="200"/></td>
<td>
<table width="100%">
<tr>
<td width="50%"><em>01</em> <strong>Love is Dead</strong></td>
</tr>
<tr>
<td width="50%"><em>02</em> <strong>One Lazy Morning</strong></td>
</tr>
<tr>
<td width="50%"><em>03</em> <strong>Dust and Rain</strong></td>
</tr>
<tr>
<td width="50%"><em>04</em> <strong>To the Winter</strong></td>
</tr>
<tr>
<td width="50%"><em>05</em> <strong>Scorpio Rising</strong></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" align="justify"><p class="txt"><em>Name</em>: <strong>Brett Anderson</strong> <em>Year</em>: <strong>2006</strong> <em>Format</em>: <strong>Sampler CD-R</strong> <em>Discography</em>: <strong>Drowned in Sound</strong> <em>Catalogue Number</em>: <strong>none</strong> <em>Made in</em>: <strong>United Kingdom</strong> <em>EAN</em>: <strong>none</strong></p></td>
</tr>
</table>
</div>
</body>
__________________________________________________ ____________
capturas
así se ve en Firefox y es así como quiero que se vea (la columna con los nombres de las canciones a la izquierda y no a la derecha como ocurre en internet explorer)
y así se ve en internet explorer