I am trying to make the divisions of class=unit-media
to display in single line by having its parent overflow-x:scroll
but not getting anywhere, Here is the code fiddle: http://jsfiddle.net/SH2EM/ any help would be highly appreciated, Thank you!
Here is code:
http://jsfiddle.net/SH2EM/1/
CSS
.media {
width:auto;
height:125px;
background-color:#BBC;
overflow-x:scroll;
overflow-y:hidden;
padding:15px;
white-space: nowrap;
}
.unit-media {
display:inline; /*Not working*/
float:left;
width:100px;
height:120px;
border:1px solid #CCC;
}