Answers for "overflow not working in ul overflow-x scroll"

1

overflow not working in ul overflow-x scroll

ul {
    width: 300px;
    overflow-x: scroll;
    background: #ccc;
    white-space:nowrap;
    display:inline-block;
}

li {
    display: inline-block;
    
    /* if you need ie7 support */
    *display: inline;
    zoom: 1
}
Posted by: Guest on June-11-2021

Browse Popular Code Answers by Language