Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/11/2008, 03:27
laura84
 
Fecha de Ingreso: noviembre-2008
Mensajes: 3
Antigüedad: 15 años, 5 meses
Puntos: 0
css mal interpretado en IE7 pero bien en firefox

Hola Chicos!!. Mi problema es que tengo un html muy basico en el que incluyo un par de divs con estilos que se ven a la perfeccion en firefox y en IE7 no, que hago? el codigo es el siguiente, es algo de los estilos pero no doy con la tecla:

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<title>Ejemplo</title>
<style type="text/css">

#seccion_inicial h3{
margin:0 0 30px 0;
padding:0;
font-size:32px;
color:#336699;
font-family: arial;
font-weight:bold;
border-bottom:1px dashed #0066cc;}

#sub_estado{
float:right;
position: relative;
top: -2.2ex;
font-size: 0.5em;
color:black;}

#sub_estado_fin{
float: right;
position: relative;
top: -2.2ex;
color:white;
background:#666666; /*color por deteminar*/
</style>

</head>

<body>
<div id="seccion_inicial">
<h3>
<div>Ficha del Proyecto</div>
<div id="sub_estado">Fase presente:<div id="sub_estado_fin">Finalizado</div></div>
</h3>
</body>
</html>
GRacias!!!