Answers for "how to remove horizontal and vertical scrollbar in css"

CSS
5

css how to remove horizontal scrollbar

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
36

hide scrollbar css

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge add Firefox */
.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}
Posted by: Guest on July-01-2020
4

remove horizontal scrollbar css

overflow-x: hidden;
Posted by: Guest on October-11-2020
0

How to remove horizontal scrollbar and yet allow vertical

overflow: auto; /* Setting the overflow to auto will automatically put a scrollbar where it is needed */

/* 
But if you insist you do not want an horizontal scrolbar, 
even if there is an overflowing text, you could use this lines of code
*/

overflow-y: scroll;
overflow-x: hidden;
Posted by: Guest on October-07-2021

Code answers related to "how to remove horizontal and vertical scrollbar in css"

Browse Popular Code Answers by Language