CSS for horizontal and vertical scroll bar

CSS for Horizontal and Vertical scroll bar

Horizontal scroll bar

#boxJys {
width:100%;
height:fit-content;
word-wrap:normal;
background-color: black;
overflow-x:scroll;
}​

Vertical scroll bar

 <style> 
div.jysVScroll {
  height: 300px;
  overflow-y: scroll;
}
</style>
Share:

Post a Comment

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.