I am producing a <ul>
of alphabetically sorted items, which spans over multiple lines. An example of this can be seen here:
currently the list is laid out horizontally, as follows:
a b c
d e f
g h i
j k l
But clients being clients, I have now been asked to change this so that the list is vertically oriented, as follows:
a e i
b f j
c g k
d h l
Unfortunately I don't know how to do this in the nice and tidy way that I've originally done it.
Can somebody please fill me in if this is possible to do with single <ul>
and CSS? Or do I have to make multiple lists?