Answers for "grid list hide scroll bar mui"

0

grid list hide scroll bar mui

#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

Browse Popular Code Answers by Language