Linked Questions

52 votes
3 answers
177k views

Allow scroll but hide scrollbar [duplicate]

I have a div with element styles like this: <div style="overflow-y: auto; max-height: 300px;">< id="DivTableContainer" ></div> I need to allow scrolling along the y-axis when it ...
Suganth G's user avatar
  • 5,156
13 votes
8 answers
47k views

Hide scroll bar of nested div, but still make it scrollable [duplicate]

This is a reference that I used, which explains how to make a div scrollable with its scroll bar hidden. The only difference is that I have nested divs. Check my fiddle HTML: <div id="main"> ...
Maximus S's user avatar
  • 11.2k
4 votes
2 answers
23k views

How to hide the scroll bar and with the content ramaining scrollable? [duplicate]

I want to print my html page into a PDF file, but don't want the scroll bar showing there in the PDF file. And my page have a scrollable body, so if I set this: * { overflow: hidden; } The body ...
David LIu's user avatar
  • 379
7 votes
1 answer
28k views

How to hide scrollbar in a div [duplicate]

I have made a div which wraps the overflow content scrollable but I want it's scroll to be hidden but div remains scroll-able. .description { height: 150px; overflow: scroll; } <div class=...
Ali Rasheed's user avatar
  • 2,815
3 votes
3 answers
10k views

How to make scrollbar invisible [duplicate]

I was making a website and I thought that the navbar would result too big in smaller devices. I found out how to make it scrollable but I don't like the fact that it shows a new scrollbar next to it. ...
Heelyx23's user avatar
  • 359
0 votes
2 answers
9k views

Hide scrollbar on div with position: fixed property [duplicate]

I can't seem to figure out, how I could hide the scrollbar on an element which has the position: fixed property set. I need a fixed side-menu with a fixed height in my app and the rest of the content ...
Maximilian Both's user avatar
0 votes
1 answer
4k views

How to hide scroll bar in react app with allowing scrolling? [duplicate]

I am trying to hide scrollbar in my react app but not being able to achieve it. I tried using ::-webkit-scrollbar with width as 0 or display as none but not able to achieve the desired result.
Vell's user avatar
  • 71
2 votes
0 answers
4k views

Alternative for -webkit-scrollbar [duplicate]

I am looking for an alternative for -webkit-scrollbar pseudo class. As its browser dependent(Chrome and Safari). Is there a css alternative or JS code for the same? -webkit-scrollbar { display: ...
Vaibhav's user avatar
  • 841
0 votes
2 answers
2k views

How can I hide scrollbar of an overflowing div in css without using overflow:hidden? [duplicate]

I have a div with overflow:scroll , scrolling horizontally. How can I hide scrollbar of the div in css ?
Felix A J's user avatar
  • 6,500
0 votes
2 answers
873 views

Hide Scroll Bar when loading [CLOSED AND UNSOLVED] [duplicate]

i want hide scroll bar when my page loads and here are my javascript <script type='text/javascript'> //paste this code under the head tag or in a separate js file. // Wait for window load $(...
user avatar
1 vote
0 answers
1k views

Hide horizontal scroll bar but be able to scroll [duplicate]

div.scrollmenu { background-color: #0090ff; overflow: auto; width: 100%; white-space: nowrap; } .invisible-scrollbar::-webkit-scrollbar { display: none; } div.scrollmenu a { ...
Muayyat Billah's user avatar
0 votes
1 answer
765 views

Scrolling with hiding scroll bar [duplicate]

I try to create a page where scroll bar is hidden but you still can scroll or click on links to scroll down. I can hide scroll bar but I can't scroll with leaving a page on 100%. Html <!...
user3026318's user avatar
-2 votes
1 answer
949 views

HTML hide scrollbars without disabling scrolling functionality [duplicate]

I need to hide the vertical scrollbar on my website (without disable scrolling). I tried to achieve this by css, but i haven't good result, either the scrolling functionality was disabled, too, or the ...
Jan Vogelsang's user avatar
1 vote
3 answers
438 views

Hidding scrollbar but not stoping scrolling [duplicate]

Is there a way to hide scroll bar, but still leaving option of scrolling up/down? I try overflow: hidden; It removes scroll bar but i can not scroll.
Edin Sita's user avatar
0 votes
4 answers
102 views

Why display:inline-flex Make the window horizontally scrollable? [duplicate]

I want that cards moves from right to left with same height and width as shown in picture which works fine but i am getting window horizontally scrollable which i don't want. When i am putting width:...
Rahul Verma's user avatar

15 30 50 per page
1
2 3 4 5
13