Utilizing the ol element with column-count and column-gap properties to organize the list into 2 columns, each list item contains a span element floated right. However, I am encountering an issue where the span element is not displayed for certain items like 3 and 4 in the image provided below.
View the Firefox column floated right problem image here
.list {
column-count: 2;
column-gap:60px;
}
.close {
float: right;
}
<ol class="list">
<li>Test 1
<span class="close">×</span>
</li>
<li>Test 2
<span class="close">×</span>
</li>
<li>Test 3
<span class="close">×</span>
</li>
<li>Test 4
<span class="close">×</span>
</li>
<li>Test 5
<span class="close">×</span>
</li>
</ol>
My browser of choice is Firefox Quantum 58.0.2 (64bit). I have also tested on the latest versions of Chrome, Edge, and Opera which are functioning correctly.