Has anyone noticed that fieldset tags do not support column-count or flex styling in Chrome? Does anyone know a workaround? Unfortunately this is created in an environment I cannot control. So, I can't change the HTML.
<fieldset style="column-count: 4;">No Bueno in Chrome</fieldset>
I've created a codepen that renders 4 columns of content. but if you view it in Chrome, it's only one column.
For anyone who may come across this, I was able to write a div within the fieldset and column count works great. Just add this wherever you can:
$( "fieldset" ).wrapInner( "<div></div>");