My website includes an unordered list structured like this:
<ul class="subnav-links">
<li class="">
<a href="/de/t/new">New In</a>
</li>
<li class="">
<a href="/de/t/sale">Sale</a>
</li>
<li class="">
<a href="/de/pages/best_looks">Looks</a>
</li>
.... more lis omitted
</ul>
Additionally, the CSS code looks like this:
.subnav-links {
-webkit-columns: 8 auto; /* Chrome, Safari, Opera */
-moz-columns: 8 auto; /* Firefox */
columns: 8 auto;
}
While viewing my website, I noticed that Chrome displays the list items in 8 columns correctly, but Firefox only shows 1 column.
I'm puzzled as to why that is happening. Can anyone shed light on this issue and offer a solution?
P.S. I attempted to wrap the subnav-ul within a div.subnav-columns and apply styling with the columns property, but Firefox stubbornly continues to display just one column.