Issue
Is there a way to have a cross browser vertical scrollbar with an absolute position?
My problem is that the scrollbar changes the width of my website when appears by giving some issues in my layout.
I do not want to remove it, I just want to make its width not disturbing my layout..
Thanks!
Solution
To stop your layout from moving when the scrollbar appears, you can use the css below to always make your scrollbar visible.
html{
overflow-y: scroll;
}
Answered By - tw16
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.