html - Can't seem to hover the drop-down menu via CSS -
to upfront, started web designing module in school, hence i'm quite new stuff. here's thing, attempted create css drop-down menu i'm not sure why drop-down menu isn't appearing. "display"/"visibility"/"opacity" property in "ul li ul" element causing trouble, or it's thing? /* navigation */ header nav ul { list-style: none; float:right; margin-right: 50px; } nav ul li { position: relative; display: inline-block; float:left; font-family: 'open sans condensed', sans-serif; padding-top: 15px; padding-bottom: 15px; margin-right: -5px; background: #fff; -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); } nav ul li a{ color: #000000;; text-decoration: none; -webkit-transition: 0.2s; -moz-transition: 0.2s; -ms-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; letter-spacing: 2px; font-size: 25px; padding: 15p...