HTML CSS Beginner Help
I'm a beginner with HTML and CSS. I briefly made a dropdown menu but it is kinda dirty? Just not neat. Could u help? (Sorry for my bad English) HTML : <!DOCTYPE html> <html> <head> <title>DropDown Menu</title> </head> <body> <div class = menu> <div class = ac> <button class = "812"> Our progress </button> </div> <div class = lower> <a href = "example.com"> LA </a> <a href = "example.com"> LB </a> <a href = "example.com"> LC </a> </div> </div> </body> </html> CSS : .menu{ position : relative; display : inline-block; } .ac{ background-color : #eaeaea ; border : 2px solid black ; padding : 13px ; cursor : default ; text-align : center ; font-size : 1.5em ; font-weight : 450 ; } .lower{ display : none; position : absolute; z-index : 1; } .lower a{ display : block; cursor : default ; font-size : 1.25em; text-decoration: none; color : black; padding : 35px; } .menu:hover .lower { display: block; } }