Creating a Responsive Multi Column List

In this tutorial we are creating responsive multi column list which maintain predefined number of columns in each row regardless of device size. The last output of our tutorial will be like below with 3 responsive columns in each row. You can easily change it with 2,4,5  or more columns as per your requirement.

In a grid system you can maintain responsiveness where fluid container display grids of images, videos, text, and more. In our article we are doing the same but maintaining number of grids in each row.

Responsive Multi Column List

Let’s say we will see same 3 grids on a large screen as well as on a mobile browser using HTML ul and li tags as responsive multi column list. The components can have images, text or other contents as well components are aligned to equal level at top with dynamic height.

You can see the demo here or download the source.

HTML Markup

Write the following markup to your page at desired location in body tag:

we have created an unordered list with each ‘li’ tag containing our content. Also notice to line number 2 where we have specified class fix-col-3 for ul tag to show 3 columns in each row. You can change the number 3 in fix-col-3 with 2,4, 5 to show 2, 4 or 5 columns per row or can create n-column layout with simple logic I will share you later.

CSS

We have written the following CSS code into style.css file and linked into head section of our page:

We have done all our calculation in percentage to maintain responsiveness of our columns. The list items are  set to display as inline block and vertically top aligned. It will maintain lists to start at equal level in each new row. You can use float: left instead of the both two if height of your blocks is fix.

We are using left and right margin as 2% of it’s parent for each li tag so a total of 4% of width is used for left and right margins for each list.

So now Simply divide 100% width to number of columns in each row and get individual list’s width. Subtracting 4% from this width will bring you available width for each li component to create responsive multi column list.

  • 2 columns each row (50% – 4%) = 40% width each
  • 3 columns each row (33.33% – 4%) = 29.33% width each 
  • 4 columns each row (25% – 4%) = 21% width each
  • 5 columns each row (20% – 4%) = 16% width each

So back to html markup at line number 2: change fix-col-3 with fix-col-n where n is one among 2, 4 or 5. These classes are already created in CSS. To prevent overlapping of text in narrow sized devices, I recommend you to keep 2 or 3  columns per row.

One last thing to note we have to remove spaces between the li elements as we created each of them into new line in our html markup (a line break and a few tabs counts as a space, just to be clear). Fortunately there are many solutions to do so which I have provided in my article Removing whitespace between HTML elements. Here we have applied font size to 0 for parent ul tag and again defined rule as font-size: 14 for child li‘s (check line number 18 & 25 respectively in CSS).

Now it’s all done. Use this little trick and if you are facing any issue in creating responsive multi column list or just wish to say something then comment below. I will sure assist you.

You can see the demo here or download the source.

You Might Interested In

1 COMMENT

Leave a Reply

Enclose a code block like: <pre><code>Your Code Snippet</code></pre>.