-
Need to remove 1 scrollbar. |
Beta Was this translation helpful? Give feedback.
Answered by
montasim
Oct 22, 2022
Replies: 3 comments
-
Use overflow-scroll in tailwind css |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AbidHasanPiash
-
The reason you're getting the scrollbar in an odd place is because it is on the rather than on the page. This is a result of using overflow:auto;.
overflow:auto; tells CSS that you want that particular to get scrollbars (either horizontal or vertical) when it is too small to display all its content.
Therefore the direct answer to your question is No; you can't position the scrollbar elsewhere on the page, since it is attached to the . |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use overflow-scroll in tailwind css