Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/06/2010, 16:40
Avatar de rudy69
rudy69
 
Fecha de Ingreso: octubre-2008
Ubicación: espndeportes.com
Mensajes: 195
Antigüedad: 15 años, 6 meses
Puntos: 7
fieldset en IE

Tengo un problema con IE, es que le he puesto un backgound a un fieldset y en IE se ve horrible xD, he buscado en la web y el tema no es muy tocado.

El problema para se ve claramente en esta pagina:
http://www.456bereastreet.com/lab/st...ited/fieldset/

La legenda del fieldset de firefox, se ve diferente a la de IE, quiero que se vea tal y cual como la del Firefox, he tratado de ajustarlo pero ya me rendi, no lo hago cuadrar. Esto es lo que tengo:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <title>Fielset bonito</title>
  4. <style type="text/css">
  5. fieldset {
  6.     background-color: #F0F2F4;
  7.     border: 1px solid #3A4856;
  8.     padding:0px 3px;
  9.     margin:0px 3px;
  10. }
  11.  
  12. fieldset legend {
  13.     background-color: #3A4856;
  14.     color: #FFFFFF;
  15.     font-weight: bold;
  16.     padding:1px 5px;
  17.     margin:-8px 5px;
  18. }
  19. </head>
  20. <body bgcolor="#808080">
  21. <legend>Mi tema</legend>
  22. Haca va el asunto
  23.  
  24. </body>
  25. </html>