jjeremiah
7 years agoExpert
Firefox label columns not working
I'm trying to layout the list of labels on a given forum using the following CSS. Works fine in Chrome and IE (there are 3 columns in IE).. but a single column list in Firefox.... .any ideas about how to get it to work in FF?
.lia-component-labels-widget-labels-list {
.BlogLabelsTaplet {
ul.lia-list-standard {
-moz-column-count: 4;
-webkit-column-count: 4;
column-count: 4;
.label {
width: calc(25% - 10px);
width: 100%;
}
}
}
}