我已成功使用HTML制作下拉菜单。问题是我不知道如何从下拉菜单移动到页面。这是我的一段代码:
<div class="dropdown">
<a href="#class="dropbtn"> Events</a>
<div class="dropdown-content">
<a href="#"> Event1 </a>
<a href="#"> Event2 </a>
<a href="#"> Event3 </a>
</div>
</div>
我尝试在div中使用id,但它无法正常工作。
答案 0 :(得分:0)
Try Like this:
<div class="dropdown">
<a href="#class="dropbtn"> Events</a>
<div class="dropdown-content">
<a href="https://www.google.co.in/"> Event1 </a>
<a href="https://in.yahoo.com/
"> Event2 </a>
<a href="http://www.rediff.com/"> Event3 </a>
</div>
</div>