Answer the question
In order to leave comments, you need to log in
How can I make the menu disappear when clicked?
Hello, there is a menu on the site:
//Чекбокс нужен для открытия меню, через :checked
<input type="checkbox" id="hmt" class="hidden-menu-ticker">
//Гамбургер, это три линии, обычно используемые в качестве кнопки для открытия меню
<label class="btn-menu" for="hmt">
<span class="first"></span>
<span class="second"></span>
<span class="third"></span>
</label>
//Это само меню
<ul class="hidden-menu">
...
//три точки означают, что тут много чего, что не влияет на суть вопроса
</ul>
position: fixed;
right: -200px;
.hidden-menu-ticker:checked ~ .hidden-menu {
right: 0;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question