I have a 3-column list and want the second and third lists to continue from the previous list. The HTML side reads as follows:
I know of the counter-reset option but cannot appear to get this to work. All examples I can source do not deal with this concept.
Anyone able to help? Please?
Code:
<div class="column1">
<ol style="padding-left: 0; list-style-position: inside;">
<li>Track 1</li>
<li>Track 2</li>
<li>Track 3</li>
<li>Track 4</li>
<li>Track 5</li>
<li>Track 6</li>
<li>Track 7</li>
<li>Track 8</li>
</ol>
</div>
<div class="column1">
<ol style="padding-left: 0; list-style-position: inside;">
<li>Track 9</li>
<li>Track 10</li>
<li>Track 11</li>
<li>Track 12</li>
<li>Track 13</li>
<li>Track 14</li>
<li>Track 15</li>
<li>Track 16</li>
</ol>
</div>
<div class="column1">
<ol style="padding-left: 0; list-style-position: inside;">
<li>Track 17</li>
<li>Track 18</li>
<li>Track 19</li>
<li>Track 20</li>
<li>Track 21</li>
<li>Track 22</li>
<li>Track 23</li>
<li>Track 24</li> </ol>
I know of the counter-reset option but cannot appear to get this to work. All examples I can source do not deal with this concept.
Anyone able to help? Please?