Created
May 10, 2024 04:51
-
-
Save SiAce/a7ec497d77500e32fca53ca8d03e02ec to your computer and use it in GitHub Desktop.
Webpage Grid Layout Tailwind
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 class="grid min-h-screen grid-cols-5 grid-rows-[3rem_minmax(3rem,_1fr)_3rem]"> | |
| <div class="sticky top-0 z-10 col-span-5">Header</div> | |
| <div class="sticky top-[3rem] row-span-2 flex max-h-[calc(100vh-3rem)] flex-col gap-96 overflow-y-scroll"> | |
| <div>Sidebar</div> | |
| <div>1</div> | |
| <div>2</div> | |
| <div>3</div> | |
| <div>4</div> | |
| </div> | |
| <div class="col-span-3"> | |
| Main | |
| <div class="h-[200vh]">123</div> | |
| </div> | |
| <div class="sticky top-[3rem] row-span-2 flex max-h-[calc(100vh-3rem)] flex-col gap-96 overflow-y-scroll"> | |
| <div>Table of Contents</div> | |
| <div>1</div> | |
| <div>2</div> | |
| <div>3</div> | |
| <div>4</div> | |
| </div> | |
| <div class="col-span-3">Footer</div> | |
| </div> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://play.tailwindcss.com/YenmM8PcFz