Código HTML:
Ver original
<!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" xml:lang="es" lang="es"> <head> <link href="estilos.css" rel="stylesheet" type="text/css" /> </head> <body> <ul id="menu"> </ul> </div> </body> </html>
Con el siguiente CSS:
Código CSS:
Ver original
body{background:#CC3300;} #menu{background:#cc9900; width:300px; margin:auto; padding:0;} #menu li{list-style:none; background:#CC0000; width:300px; margin:0; padding:0; text-align:center;} #1{color:#ff0000;}
Pero curiosamente no me modifica nada del "#1", he intentado con "#menu#1" y todas las combinaciones posibles y no obtengo ningún resultado.
Cual podría ser la causa?