css - Create a HTML scrollbar -
What is a scrollbar element in HTML ?
If not, how can a scrollbar be made? I tried to use the overflow with div but the problem is that to add the content to the scrollbar to appear, and if I add content It will be visible.
CSS:
.h - scrollbar {overflow-x: scroll; Width: 300px; } .h-scrollbar div {width: 1000px; Display area; } HTML:
& lt; Div class = "h-scrollbar" & gt; & Lt; Div & gt; Text & lt; / Div & gt; & Lt; / Div & gt; Here's a demo:
How do I get the scrollbar only ?
You can use the CSS class below to hide the text and get only the scroll bar element
.h-scrollbar div {width: 1000px; Display area; Visibility: hidden; Height: 0 pixels}
Comments
Post a Comment