Answers for "css don't show horizontal scrollbar"

11

css how to remove horizontal scrollbar

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

hide horizontal scrollbar

#parent{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#child{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -17px; /* Increase/Decrease this value for cross-browser compatibility */
    overflow-y: scroll;
}
Posted by: Guest on July-03-2020

Code answers related to "css don't show horizontal scrollbar"

Browse Popular Code Answers by Language