Created
January 18, 2025 00:22
-
-
Save tkim90/fdde1f92de64b0bfe8d94b7e4f5a00d0 to your computer and use it in GitHub Desktop.
HTML render breakpoints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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