This is a feature request to change the positioning algorithm. Currently, the algorithm works as follows:
- select the height of the shortest column
- Select the leftmost (or rightmost) column of the columns with that height.
I would like to propose another algorithm:
- Select the height of the shortest column
- Select the leftmost (or rightmost) column of the columns with
height <= (min_height + e), where e is a small value which the user can set, for example three pixels.
An example where this use case would be nice, can be seen here: http://codepen.io/anon/pen/JGLQVp
In this example, the slightly larger box on the left causes the box on the next line to be positioned in the middle column, while a position in the left column would be more visually pleasing — especially since the small height difference between the columns is not noticeable, due to the gutters and margin.
This is a feature request to change the positioning algorithm. Currently, the algorithm works as follows:
I would like to propose another algorithm:
height <= (min_height + e), whereeis a small value which the user can set, for example three pixels.An example where this use case would be nice, can be seen here: http://codepen.io/anon/pen/JGLQVp
In this example, the slightly larger box on the left causes the box on the next line to be positioned in the middle column, while a position in the left column would be more visually pleasing — especially since the small height difference between the columns is not noticeable, due to the gutters and margin.