Posts

Showing posts with the label HTML Dropdowon

HTML Drop down

Image
                          Rajeev Tiwari How TO - Hoverable Dropdown < div  class ="dropdown" >    < button  class ="dropbtn" > Dropdown < /button >    < div  class ="dropdown-content" >      < a  href ="#" > Link 1 < /a >      < a  href ="#" > Link 2 < /a >      < a  href ="#" > Link 3 < /a >    < /div > < /div > dropbtn  {   background-color :  #4CAF50 ;   color :  white ;   padding :  16px ;   font-size :  16px ;   border :  none ; } /* The container <div> - needed to position the dropdown content */ .dropdown  {   position :  relative ;   display :  inline-block ; } /* Dropdown Content (Hidden by Default) */ .dropdown-...