skip to Main Content

I am trying to make a navbar for a website , using HTML + Tailwindcss but the functionality i want is not happening

I tried the group-hover:block too but still when I hover over the solution and resources, it's not showing the dropdown menu <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Front Page</title> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> </head> <body class="bg-slate-600">…

VIEW QUESTION

Html – unwanted long margin at the bottom

<body> <div class="nav" id="Nav"> <a href="#top">Home</a> <a href="#nav1">Shop</a> <a href="#nav2">Blog</a> <a href="#nav3">About</a> <a href="#nav4">Contact</a> </div> <div id="page"> <img src="xyz" height="300" width="300" style="display: block; margin: 0 auto;"> </div> <div id="nav1"></div> </body> <style> .nav { text-align: center; background-color: #edb021; position: absolute; width:…

VIEW QUESTION
Back To Top
Search