+ 1
How to create a drop down menu in html
html css
4 ответов
+ 4
I found this question just after I had it in mind. 
+ 3
For simple drop-down menu, you can avoid use of Javascript...
Example of pure CSS implementation here: https://code.sololearn.com/WV5yAMqEKnO0/#css
+ 1
<select>
        <option>black cat</option>
        <option>brown cat </option>
         <option>white cat </option>
         <option>grey cat </option>
</select>
0
well since You Will need also Javascript, i would recommend You to use a framework like Bootstrap. With a framework like that You only need to write some HTML and add a class to it.



