I've been practicing CSS for a while ago and trying to implement a simple drop-down menu without using either bootstrap or jQuery.
The problem is, I cannot fully mimic the drop-down menu looks like the following image below.
Expecting Result
Current Result
<div id="menu">
<a href="#" class="menu-toggle">
<span></span>
<span></span>
<span></span>
</a>
<ul id="dropdown-menu">
<li class="dropdown-item">
<a href="#about">About</a>
</li>
<li class="dropdown-item">
<a href="#travel">Travel</a>
</li>
<li class="dropdown-item">
<a href="#food">Food</a>
</li>
</ul>
</div>

