quiero meter dos menus dentro de un div, uno a la izquierda y el otro a la derecha.
Mi problema: el espacio que queda entre los dos menus no se colorea de verde (se queda de color blanco).
Aqui esta mi codigo:
Código HTML:
<div id="cabecera" style=" background: green"> <ul id="navlist" > <li style="float:left"><a style="background: green; " href="#">Item 1</a></li> <li style="float:left"><a style="background: green; " href="#">Item 2</a></li> </ul> <ul id="navlist" > <li style="float:right"><a style="background: green; " href="#">Item 1</a></li> <li style="float:right"><a style="background: green; " href="#">Item 2</a></li> </ul> </div>
Un saludo
Javi