Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/11/2014, 17:11
20113784
 
Fecha de Ingreso: agosto-2014
Mensajes: 48
Antigüedad: 9 años, 9 meses
Puntos: 1
No me funciona el selector mayor que ">"

Todo se pone "Bold" y quiero que los hijos se queden regular


código:


<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
ul#lista > li {
font-weight: bold;

}
</style>

</head>
<body>

<ul id="lista">
<li> hola
<ul>
<li>hola</li>
<li>hola</li>
</ul>
</li>
<li>hola</li>
<li>hola</li>
</ul>
</body>
</html>