I have to produce a 3-column list of items similar to what can be seen for the different groups (mostly banks and financial institutions) at this page:
http://funds.ft.com/FundDirectory.aspx (even though these are horizontally aligned divs)
I have all the items I need to add to the 3 columns in a List<Group>
stored in my Model.Groups
object.
I was thinking of taking an approach similar to:
<ul>
<% foreach (var item in Model.Groups) { %>
<li>
<a href='<%=item.URL %>'>
<%= Html.Encode(item.Name) %>
</a>
</li>
<% } %>
</ul>
but this will only generate a single-column list. Is there any way for me to produce a 3-column list with simple HTML/CSS or do I have to take a more dynamic approach, by e.g. creating 3 horizontally aligned lists, with the number of items per list depending on the total number of items in Model.Groups
/ 3?
Or is there a smarter way for me to approach this? I'm open to all suggestions. Thanks