Listing ol li up to down in 2 column with CSS
Asked Answered
B

2

6

I have an ol/li listing (in one ol tag), I need to list in two columns. There must be a way to do it in CSS. alt text

Balbur answered 7/9, 2010 at 19:21 Comment(0)
T
3

I have no definite answer for you, but you may have a look at this article from "A List Apart": CSS Swag: Multi-Column Lists.

There are listed several methods to achieve this, but only some of them work with one single list.

Thrum answered 7/9, 2010 at 19:32 Comment(0)
F
1

You can use the start attribute

<ol>
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ol> 

<ol start="4">
  <li>Four</li>
  <li>Five</li>
  <li>Six</li>
</ol>

http://www.w3schools.com/tags/att_ol_start.asp

Famed answered 14/12, 2015 at 23:17 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.