I've seen this question a lot, but no solutions are working for me.
I've tried float: left,
I've tried float with position:absolute, and with position: fixed,
I've tried different display: inline, and display: inline-block
I do not want to make them a list, need to keep as divs
and I've tried essentially all combinations of the above.
I'm ultimately trying to implement jInverScroll and am having issues. If you inspect element on the website: http://www.pixxelfactory.net/jInvertScroll/ you'll see that the divs in the "front scroll" class all have specific "left:XXXpx" values.
How do I get the divs on my page to orient like that without specifying pixel values?
EDIT: Due to popular demand, here is a jsFiddle. How do I get the colored squares in this to line up left to right? https://jsfiddle.net/mj9bs3sq/ currently they all have this css:
#eleOne{
height: 300px;
width: 300px;
background-color:blue;
float:left;
top:0;
}