Code HTML tạo menu click xổ xuống

5/5 - (2 bình chọn)

Zubi Cloud hướng dẫn Code HTML tạo menu click xổ xuống, How TO – Clickable Dropdown

code html tao menu click xo xuong 72889

Chèn đoạn code sau vào nơi cần hiển thị

<div class="dropdown">
  <button onclick="myFunction()" class="dropbtn">Dropdown</button>
  <div id="myDropdown" class="dropdown-content">
    <a href="#">Link 1</a>
    <a href="#">Link 2</a>
    <a href="#">Link 3</a>
  </div>
</div>

Chèn đoạn JS sau trên </head>

<script>
/* When the user clicks on the button, 
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}

// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>

Chèn đoạn CSS sau vào Style

.dropbtn {
background-color: #3498DB;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
background-color: #2980B9;
}

.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}
5/5 - (2 bình chọn)


  1. Whoa! This blog looks just like my old one! It’s on a totally different subject but it has pretty much the same page layout and design. Superb choice of colors!

    Here is my webpage; dune sofa

  2. Does your site have a contact page? I’m having a tough time locating it but, I’d
    like to send you an e-mail. I’ve got some recommendations for your blog you might
    be interested in hearing. Either way, great blog and I look forward to
    seeing it expand over time.

    Here is my web site thebrotherswild

  3. Як вибрати ідеальний варіант
    Кращі тактичні рюкзаки
    тактичний військовий рюкзак [url=https://ryukzakivijskovibpjgl.kiev.ua/]https://ryukzakivijskovibpjgl.kiev.ua/[/url] .

  4. Які елементи входять до складу
    Модна тенденція
    тактичні рюкзаки купити [url=https://ryukzakivijskovibpjgl.kiev.ua/]тактичні рюкзаки купити[/url] .

  5. Як підібрати тактичний рюкзак для активного відпочинку
    Екстремальні подорожі
    купити рюкзак тактичний [url=https://ryukzakivijskovibpjgl.kiev.ua/]купити рюкзак тактичний[/url] .

  6. Як підібрати тактичний рюкзак для активного відпочинку
    Екстремальні подорожі
    рюкзаки тактичні купити [url=https://ryukzakivijskovibpjgl.kiev.ua/]https://ryukzakivijskovibpjgl.kiev.ua/[/url] .

  7. Pretty nice post. I just stumbled upon your blog and wished to say that I’ve truly enjoyed browsing your blog posts.
    In any case I will be subscribing to your rss feed and
    I hope you write again soon!

    Feel free to surf to my web-site dune sofa for sale

  8. Excellent goods from you, man. I’ve understand your stuff previous to and
    you’re just extremely magnificent. I actually like what you have acquired
    here, certainly like what you are stating and The Brothers Wild way in which you say it.
    You make it entertaining and you still take care of to
    keep it smart. I can not wait to read far more from you.
    This is really a great website.

Trả lời

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *