skip to Main Content

disable li items in navigation bar HTML

I have a simple navigation bar, this is the HTML <body> <header> <nav class="menubar"> <ul class="menulist"> <li id="login" class="login"><a href="login.html">Login</a></li> <li id="settings" class="settings"><a href="settings.html">Settings</a></li> <li id="conf" class="conf"><a href="conf.html">Configuration</a></li> <li id="about" class="about"><a href="about.html">About</a></li> </ul> </nav> </header> </body> ul li { list-style:…

VIEW QUESTION

Css – tailwind justify-center not working – reactjs

I have div, inside I have some cards from daisyui. I want those cards to justify center on smaller screens(I have flexed it to column for smaller screens). <div className='container mx-auto lg:px-28 mt-0 h-auto sm:w-full'> <div className='md:shadow-[rgba(0,0,15,0.5)_10px_5px_4px_0px,rgba(0,0,15,0.5)_-10px_5px_4px_0px] mt-0 lg:pl-5 lg:pr-20…

VIEW QUESTION
Back To Top
Search