I’ve used columnize plugin to make my long content into newspaper columns.
its look like this: enter
problem is that I’ve used the same styles like here: enter to force divs to stay in one line.
They dont stay in line, its first problem, and 2nd is how to force those columns to have constant height.
I’m open for other solutions too. Need constan height, multi column, horizontal scrolling content page.
Get the width of the document, and the height. Then based on those two begin to construct your elements. Decide how many columns you want which will determine their width. Since you state that height is constant, that is already taken care of. Use
overflow: auto;to implement a scrollbar inside of the column to allow for horizontal scrolling if the content gets to large for the space.