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.
Listing ol li up to down in 2 column with CSS
Asked Answered
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.
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>
© 2022 - 2024 — McMap. All rights reserved.