Looking at the code snippet below, I'm attempting to utilize nth-child in order to have every 4th, 7th, 10th, etc. category appear on a new line. Unfortunately, it seems that the CSS code is not functioning as expected.
#categories:nth-child(3n + 1) {clear: left;}
{{#if categories}}
<div id="categories">
{{#each categories}}
<div class="category" id="category-unit" url="{{url}}">
<div class="category-icon"></div>
<div class="category-name">{{name}}</div>
<span class="category-info"></span>
</div>
{{/each}}
</div>
{{/if}}