Hola a todos, tengo el siguiente HTML:
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"> <link href="estilos.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery-framework.js"></script> <li id="1">Articulo 1
</li>
Con el siguiente CSS:
Código CSS:
Ver originalbody{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?