Is it possible to use CSS to ensure that empty columns in a predefined bootstrap grid are on the left rather than the right, without manually adding empty entries into the left hand columns?
For example, if the column count is 4 (col-xs-3
) and there are 5 entries, I want the first row to display as value|value|value|value
, and then the second row would show empty|empty|empty|value
Seeking input on whether this functionality can be achieved using CSS alone.