JSFiddle - React, Tailwind, and code Playground

by waffl

HTML

<div id="headline-ticker">
<a href="http://www.google.com">Google Link</a>
<a href="http://www.google.com">Google Link</a>
<a href="http://www.google.com">Google Link</a>
<a href="http://www.google.com">Google Link</a>
<a href="http://www.google.com">Google Link</a>
<a href="http://www.google.com">Google Link</a>
<a href="http://www.google.com">Google Link</a>
<a href="http://www.google.com">Google Link</a>
</div>

CSS

.testDiv {
    border: 1px solid red;
    margin: 15px;
}

#headline-ticker a {
    display: block;
}

JavaScript

var holder;

$("#headline-ticker a").each(function(index, elem){
    if(index%3==0){
        holder=$("<div class='testDiv'></div>").appendTo("#headline-ticker");
    }
    
    holder.append(this);
});