Some CSS commands are not working.
Follow the commands:
HTML
<section class="menu-departamentos"><!-- inicio .menu-departamentos -->
<h2>Departamentos</h2>
<nav>
<ul>
<li><a href="#">Blusas e Camisas</a></li>
<ul>
<li><a href="#">Manga curta</a></li>
<li><a href="#">Manga cumprida</a></li>
<li><a href="#">Camisa social</a></li>
<li><a href="#">Camisa casual</a></li>
</ul>
<li><a href="#">Calças</a></li>
<li><a href="#">Saias</a></li>
<li><a href="#">Vestidos</a></li>
<li><a href="#">Sapatos</a></li>
<li><a href="#">Bolsas e Carteiras</a></li>
<li><a href="#">Acessórios</a></li>
</ul>
</nav>
</section><!-- fim .menu-departamentos -->
CSS
a[href^=http://]:after {
content: '(externo)';
}
li ul {
display: none;
}
Do not do what it was to do, I can put color:red;
in the second that nothing happens.
Nothing that I put in braces works with li ul
separated by space, only works if I separate them by comma li,ul
.
Can anyone tell me why?
I have tested with both Chrome and Sapphire, both updated.
I use Sublime Text.
Goal
Remove the Blouses and Shirts submenu by using display:none;
in CSS