Ver Mensaje Individual
  #8 (permalink)  
Antiguo 24/06/2008, 00:05
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
Respuesta: Si quito el DocType funciona!! :|

Prueba con esto:

Cita:
<!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" lang="es" xml:lang="es">
<head>
<title>probando</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
margin: 0px;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 70%;padding: 0px;
background: #4A9BEA;
}
#general {
padding:5px;
background: #FAFAFA;
border: #83ACE9 solid 1px;
width:940px;
margin:auto;
margin-top:5px;
overflow:hidden;
}
.contenido {
text-align:justify;
background: #E4F0FF;
width:720px;
float:left;
margin-bottom:10px;
padding: 5px;
border: #83ACE9 solid 1px;
color: #000000;
}
dl.details dt {
float: left;
width: 30%;
text-align: right;
color: #000000;
display: block;
}
dl.details dd {
margin-left: 0;
padding-left: 5px;
margin-bottom: 5px;
color: #105BAC;
float: left;
width: 65%;
}
</style>
</head>
<body>
<div id="general">
<div class="contenido">
<dl class="details">
<dt>Usuario:</dt><dd><span style="font-weight:bold;">T_O_N_N_Y</span></dd>
<dt>Ubicación:</dt>
<dd>Quart de Poblet (València)</dd>
<dt>Cumpleaños:</dt>
<dd>5-11-1989, 18 años</dd>
<dt>Ocupación:</dt>
<dd>Estudiante de ingeniería de telecomunicaciones en la UPV</dd>
<dt>Intereses:</dt>
<dd>Disfrutar la vida en general bla bla</dd>
</dl>
</div>
</div>
</body>
</html>
Mikel.