Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/04/2008, 04:36
Souf
 
Fecha de Ingreso: febrero-2005
Ubicación: Valencia
Mensajes: 101
Antigüedad: 19 años, 1 mes
Puntos: 15
Re: Problema atributos texto CSS [IE]

Gracias, sí que funciona así, pero el problema que tienen los h2, h3, ... Es que inserta saltos de lineas antes y después, por lo que ahora se me ve bien, pero separados unos textos de otros, por lo que he solucionado un problema, pero he creado otro, ahora no tengo los textos pegados, sino separados...
:S

EDITO: YA LO HE CONSEGUIDO!!!

HTLM
Cita:
<div id="noticias-general">
<table align="left" valign="top" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
<div id="noticias">
<table align="left" valign="top" cellspacing="10" cellpadding="10">
<tr>
<td>
<div id="titulo">
<a href="#">Titulo</a>
</div>
<div id="subtitulo">
Subtitulo
</div>
Cuerpo
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
CSS
Cita:
#noticias-general {
width: 100%;
}

#noticias-general td{
width: 33%;
}

/*CSS sobre las noticias*/
#noticias {
font-family:Arial,Helvetica;
width:100%;
color:blue;
/* color: #000000;*/
font-size: 0.9em;
line-height: 1.2em;
text-align: justify;
}

#noticias td{
width: 100%;
}

#noticias titulo{
color: #003366;
font-weight:bold;
font-size: 1.3em;
line-height: 1em;
text-align: left;
}

#noticias titulo a{
text-decoration: none;
color: #003366;
}

#noticias subtitulo{
color: #999999;
font-weight: bold;
font-size: 1em;
line-height: 1em;
text-align: left;
}

Última edición por Souf; 20/04/2008 a las 05:35