Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display a list in two rows?

Tags:

I have a list of items that I want to fit in a space that is constrained vertically:

<ul>     <li>One</li>     <li>Two</li>     <li>Three</li>     <li>Four</li>     <li>Five</li>     <li>Six</li> </ul> 

Since I don't want the list to have more than a specific height, but I'm free to expan it horizontally, I want to divide the list into columns, like this:

One    Two     Three Four   Five    Six 

Or, alternatively (in my case order is not important)

One    Three   Five Two    Four    Six 

The css property column-count allows to break a list into columns, but it only accepts a fixed number of columns. I don't know the number of items I am going to have (it can go from 1 to more than 40), so if I set the number of columns to 3, any list with more than 6 items will be too high, and if there is only 4 items, then only the first column will have two items and it will look uneven.

So, ideally I would need a row-count property, but it doesn't exist. I guess I can do that in Javascript too but I'm looking for a CSS-only solution.

I tried something: float:left on every li puts the list in one row. To break it into two rows, I would need to not apply float:left to the N/2 element. I don't know how to do that.

I know also that I can do it by breaking it into multiple ul, each one with two li, and float:left them, but I would like to avoid messing the HTML for something entirely presentational.

Does someone has a solution for this problem?

Edit: I think I have not been clear in explaining my requirements. I want the list to be sorted into columns without knowing how many items I'm going to have, and so that I will always have two rows.

So for example with 7 items, I want to have:

One    Two     Three   Four Five   Six     Seven 

And with 3 items:

One    Two Three   
like image 702
Cyrille Ka Avatar asked Dec 13 '13 15:12

Cyrille Ka


People also ask

How do I display an unordered list in two columns?

This is the simplest way to do it. CSS only. add width to the ul element. add display:inline-block and width of the new column (should be less than half of the ul width).

How do you display a list in a line?

Displaying List. The quickest way to display a list on a single line is to give the <li> elements a display property value of inline or inline-block . Doing so places all the <li> elements within a single line, with a single space between each list item.

How do you display list items in columns?

Create a list with as many list elements as you want. Then enclose the list in a div, setting style=column-width and style=column-gap, to match the information in your list elements. Do not set style=columns. Totally responsive list that adapts to screen size.


2 Answers

Here is a simple way to do it using jquery. I know it is mentioned that a CSS way is needed, but this is just for future reference if anyone wants to refer to this question.

Get the number of LI items and divide it by the number of rows and set that value to column-count property.

Jquery

$(document).ready(function() { var numitems =  $("#myList li").length;  $("ul#myList").css("column-count",Math.round(numitems/2)); }); 

CSS

ul {   width: 900px; } li { width: 75px; height: 75px; margin-top: 10px; margin-right: 10px; display: inline-block; } 

HTML

<ul id="myList"> <li>One</li> <li>Two</li> <li>Three</li> <li>Four</li> <li>Five</li> <li>Six</li> <li>Seven</li> <li>Eight</li> <li>Nine</li>     </ul> 

Fiddle here

EDIT:

Same implementation using simple javascript.

var ul = document.getElementById("myList"); var li = ul.getElementsByTagName("li"); var numItems = li.length;  var css = document.createElement("style"); css.type = "text/css"; css.innerHTML = "ul { column-count: " + Math.round(numItems/2) + "; }"; document.body.appendChild(css); 

You need to set the width of UL, because number of rows will depend on the width also even after setting the column-count. You can set it to 100% too, but then the number of rows will change based on the window size. To restrict the number of rows to 2, fixed width for UL may be required.

like image 183
Poornima Avatar answered Oct 01 '22 08:10

Poornima


You could set your li at 33% width and floating against each other, once there isn't enough room in a row they will be pushed down in rows of 3 of equal width.

ul li{   width: 33%;   float: left; } 
like image 41
user1620090 Avatar answered Oct 01 '22 08:10

user1620090