Why doesn't the dropdown menu work | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Why doesn't the dropdown menu work

A simple navbar with a dropbtn. however the dropdown function never gets called for whatever reason. https://code.sololearn.com/WtEdU65IHLr1/#html

31st Mar 2018, 11:46 PM
Logomonic Learning
Logomonic Learning - avatar
1 Answer
+ 3
The function is called and executed (to convince yourself, try to add a console.log('test'); in the function body), but your css declaration is not applied because '.show' selector and '.dropdown-content' selectors have the same weight priority (specificity), and you first define '.show' rules before '.dropdrown-content' rules, so second one overide first one ^^ You could fix it by moving '.show' css rules declaration after '.dropdown-content', or change '.show' selector by a much more weighted priority as : '.dropdown .show'... Check this page about specificity of css selectors to learn more about it: https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
1st Apr 2018, 12:31 AM
visph
visph - avatar