what HTML and CSS would you use to layout the names of the months in two columns like:
january july
feb aug
mar sep
apr oct
may nov
jun dec
month names are coming from an array and html is dynamically generated for i18n purposes.
If it was:
january february
mar apr
...
I would just put them in a DIV, all with double the width of a single month + some space and float them. but ordering them as stated seems more complicated…
Must i introduce two additional DIVs for the columns ?
If the HTML is generated, you could do something like this (jsFiddle):