Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/02/2010, 08:37
Avatar de Kaze71
Kaze71
 
Fecha de Ingreso: enero-2010
Mensajes: 44
Antigüedad: 14 años, 3 meses
Puntos: 4
Respuesta: Dando forma a una lista: se me suben encima las opciones!!

Prueba con algo así:

Código HTML:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
<!--
body,td,th {
    font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
}
ul {
    list-style: none;
}
ol {
    list-style: none;
}
ul li{
    clear:both;
}
ul li a {
    position:inherit;
    display:block;
    width:180px;
    height: 26px;
    text-decoration:none;
    vertical-align: middle;
}
ul ol li a {
    float:left;
    display:block;
    width:180px;
    height: 22px;
    text-decoration:none;
}
-->
</style></head>

<body>

    <ul>
        <li><a href="#">MENU 1</a>
            <ol>
                <li>
                    <a href="#">LINK 1</a>
                    <a href="#">LINK 2</a>
                    <a href="#">LINK 3</a>
                </li>
            </ol>
         </li>
        <li><a href="#">MENU 2</a>
            <ol>
                <li>
                    <a href="#">LINK 1</a>
                    <a href="#">LINK 2</a>
                    <a href="#">LINK 3</a>
                </li>
            </ol>
         </li>
        <li><a href="#">MENU 3</a>
            <ol>
                <li>
                    <a href="#">LINK 1</a>
                    <a href="#">LINK 2</a>
                    <a href="#">LINK 3</a>
                </li>
            </ol>
         </li>
   </ul>

</body>