Hide content from mobile version and make visible on desktop, using Tailwind CSS
I tried to use the Tailwind hidden class to hide content from my page on mobile screens only, but instead it becomes hidden for desktop and visible in the mobile version. I want the opposite. My code: <nav class="hidden lg:block">abc</nav>…