I'm using Django for backend and I want to display the below ul in unlimited columns with overflow-x : auto.
<ul class="list">
  {% for i in skills %}
    <li>{{i}}</li>
  {% endfor %}
</ul>sample output:
1 7  . . . 
2 8  . . .
3 9  . . .
4 10 . . .
5 11 . . .
6 12 . . . 
    