Skip to content

Instantly share code, notes, and snippets.

@tkim90
Created January 18, 2025 00:22
Show Gist options
  • Select an option

  • Save tkim90/fdde1f92de64b0bfe8d94b7e4f5a00d0 to your computer and use it in GitHub Desktop.

Select an option

Save tkim90/fdde1f92de64b0bfe8d94b7e4f5a00d0 to your computer and use it in GitHub Desktop.
HTML render breakpoints
<div className="fixed bottom-50 right-0 m-1 p-2 bg-red-500 text-white rounded">
<div className="block sm:hidden">xs</div>
<div className="hidden sm:block md:hidden">sm</div>
<div className="hidden md:block lg:hidden">md</div>
<div className="hidden lg:block xl:hidden">lg</div>
<div className="hidden xl:block 2xl:hidden">xl</div>
<div className="hidden 2xl:block">2xl</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment