03/03/2009, 17:44
|
| Colaborador | | Fecha de Ingreso: octubre-2006 Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 3 meses Puntos: 280 | |
Respuesta: listas de difinicion a dos columnas Probad esto.
Igualito en FF y IE Cita: <html>
<head>
<style type="text/css">
dl {padding:0;
margin: 0;
width: 45%;}
dl.izq {float: left;}
dl.der {float: right;}
dl.izq dd, dl.izq dt {border: 1px solid blue;}
dl.der dd, dl.der dt {border: 1px solid red;}
dt {margin-top: 20px;}
</style>
</head>
<body>
<dl class="izq">
<dt>item1</dt>
<dd>descripcion1</dd>
<dt>item3</dt>
<dd>descripcion3</dd>
<dt>item5</dt>
<dd>descripcion5</dd></dl>
<dl class="der">
<dt>item2</dt>
<dd>descripcion2</dd>
<dt>item4</dt>
<dd>descripcion4</dd>
</dl>
</body>
</html> |