Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

hidden webkit vertical scrollbar, display horizontal scrollbar

  • Hi, I was coding CSS, and then I meet the problem.

  • I had learned that if I code the CSS code bellow, the scroll bar will not display on the web page.

    ::-webkit-scrollbar {
        display: none; 
    }  
    
  • But I wanted to display the horizontal scroll bar and hide the vertical scroll bar.

    MEDevel.com: Open-source for Healthcare and Education

    Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

    Visit Medevel

enter image description here

  • How can I hide the vertical scroll bar, I don’t know if the CSS code had something like ::webkit-y-scrollbar?

>Solution :

It may be possible to use the CSS overflow property. The overflow property allows you to control the content area and without viewing the rest of your code, it may work in this scenario. Try something like so:

html {
  overflow-x: scroll;
  overflow-y: hidden;
}

Documentation: https://www.w3schools.com/css/css_overflow.asp

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading