Created
May 9, 2022 06:38
-
-
Save siumhossain/d1c974417bc16fdf3b6596592c270ffc to your computer and use it in GitHub Desktop.
make side bar scroll able vue/nuxt/html/css
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
| <style scoped> | |
| .section{ | |
| max-height: 98vh; | |
| overflow:auto; | |
| width:100%; | |
| } | |
| </style> |
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="section"> | |
| <div v-for="i in 100" :key="i" class="text-white text-center mt-7 mx-2 px-1 py-1"> | |
| <p>hellogggggg</p> | |
| </div> | |
| <div class="text-white text-center mx-2 px-1 py-1"> | |
| <p>hellogggggg</p> | |
| </div> | |
| <div class="text-white text-center mx-2 px-1 py-1"> | |
| <p>hellollll</p> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment