- 1
I want dropdown menu . Any one give me html code .
6 ответов
+ 4
https://www.w3schools.com/howto/howto_css_dropdown.asp
you can find some helpful codes on w3schools too. But try to learn on your own. That'll help more.
+ 3
What you mean by "anyone give me html code" ? Ask only specific questions ,it's not a code delivery platform ,use your feed or personal messages for that stuff
+ 1
Practice yourself bro
+ 1
<select> </select>
+ 1
<ul id="menu">
<li class="item">item1</li>
<li class="item">item2</li>
<li class="item">item3</li>
</ul>
CSS
.item{
display:none;
}
#menu:hover .item{
display:block;
}
0
Search dropdown in code{} section
And don't forget to ask and credit code owner before using his/her code.(no need for idea but do it if you copying the code .)