Skip to content

Instantly share code, notes, and snippets.

@darmen
Created September 1, 2021 20:16
Show Gist options
  • Save darmen/d48a67a43419ebf170c19792dabb4df8 to your computer and use it in GitHub Desktop.
Save darmen/d48a67a43419ebf170c19792dabb4df8 to your computer and use it in GitHub Desktop.
Screen brakepoints to debug your Tailwind markup in different screen sizes
<div class="fixed top-20 right-5 bg-black text-white p-1 text-sm">
<span class="block sm:hidden md:hidden lg:hidden xl:hidden 2xl:hidden">MO</span>
<span class="hidden sm:block md:hidden lg:hidden xl:hidden 2xl:hidden">SM</span>
<span class="hidden sm:hidden md:block lg:hidden xl:hidden 2xl:hidden">MD</span>
<span class="hidden sm:hidden md:hidden lg:block xl:hidden 2xl:hidden">LG</span>
<span class="hidden sm:hidden md:hidden lg:hidden xl:block 2xl:hidden">XL</span>
<span class="hidden sm:hidden md:hidden lg:hidden xl:hidden 2xl:block">2XL</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment