+ 3
How to create dropdown menu in html css
Dropdown menu
11 odpowiedzi
+ 6
<style>
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}
.dropdown:hover .dropdown-content {
  display: block;
}
</style>
<div class="dropdown">
  <span>Mouse over me</span>
  <div class="dropdown-content">
    <p>Hello World!</p>
  </div>
</div>
+ 3
Use select and option tag.
+ 2
Read 25.1 lesson jQuery course or use Bootstrap component.
+ 1
Hi! A simple way to get a dropdown menu in html is use the <details> tag, is you want to name it, use the summary tag
0
Follow this:
https://code.sololearn.com/WsuueHRODa69/?ref=app
0
https://t.me/Coders_Crafters 
join our Telegram group for discussion with everyone about coding. Let's interact with all coders About programming language like HTML CSS, JS, PY
0
use select and option tag



