I have some columns, made with ul li
<ul>
<li>1</li>
<li>2</li>
<li>1</li>
<li>2</li>
<li>1</li>
<li>2</li>
<li>1</li>
<li>2</li>
<li>1</li>
<li>2</li>
<li>1</li>
<li>2</li>
</ul>
That will be like this in the case of 2 in 2
[1] [2]
[1] [2]
[1] [2]
[1] [2]
[1] [2]
[1] [2]
I wanted to give a margin-left
of 15px but I only wanted that margin-left
in column 2, that is, all that is in the right column > > have a margin-left.
I tried it with nth-child but it did not work very well.
Would anyone know of any way to do this?