I have a row with a dynamic number of columns that is generated in JADE based on the data received from the database. Elements are an image, and their number may be 0 and may be a large number (max. 100).
. Inside the frame is inside, and I want to be able to fill the images in order from right to left. Meaning, the first image is in the upper right corner, the second is to the left of the first. each image uses col-md-2, so after 6 images the 7th should be under the first.
Right now, when generating the columns, the first one is in the upper left corner .. since it is the default.
Any way to change this?
Tried to use col-md-offset-X and it only executed the first line of images (because it is one line)
Current: -------------- | xxxx | | xx | -------------- How it should be: -------------- | xxxx | | xx | --------------
source share