Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/04/2008, 05:26
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: Problema atributos texto CSS [IE]

¿Y no podrías hacerlo así, que es más semántico y te lo van a interpretar igual todos los navegadores?

CSS:
Cita:
<style type="text/css">
/*CSS sobre las noticias*/
* {margin:0; padding:0;}
#noticias {
font-family:Arial,Helvetica;
width:100%;
color: #000000;
font-size: 0.9em;
line-height: 1.2em;
text-align: justify;
}
#noticias td{
width: 100%;
}
#noticias h2{
color: #003366;
font-weight:bold;
font-size: 1.3em;
line-height: 1em;
text-align: left;
}
#noticias h2 a{
text-decoration: none;
color: #003366;
}

#noticias h3{
color: #999999;
font-weight: bold;
font-size: 1em;
line-height: 1em;
text-align: left;
}
</style>
HTML:
Cita:
<table id="noticias" align="left" valign="top" cellspacing="10" cellpadding="10">
<tr>
<td>
<h2>
<a href="#">Título de la noticia</a>
</h2>
<br>
<h3>
Título de la noticia
</h3>
<br>
Cuerpo de la noticia
</td>
</tr>
</table>
No lo sé, pero imagino que explorer no consigue interpretar las etiquetas que no son html, como <titulo> y <subtitulo>.

Mikel