Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to make a width infinite and hidden using css

#scroller-wrapper {
    width: 100%;
    height: 200px;
    background-color: red;
}

#scroller {
    height: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.elem {
    height: 100%;
    display: inline-block;
    outline: 1px solid blue;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #width #infinite #hidden #css
ADD COMMENT
Topic
Name
8+4 =