JSFiddle - React, Tailwind, and code Playground

HTML

<h2>Indivdual Prices</h2>

                         <div class="divTable">
							<div class="divTableRow">
                                <div class="divTableArticle">
                                    <h4>2013</h4>
                                    <ul>
                                        <li>
                                            <a href="/Edition/4781?fromArchive=True">2013 Report (29/06/2012)</a>                  
										</li>
                                        <li>
                                            <a href="/Edition/4781?fromArchive=True">2013 Report (29/06/2012)</a>                  
										</li>
                                        <li>
                                            <a href="/Edition/4781?fromArchive=True">2013 Report (29/06/2012)</a>                  
										</li>
                                        <li>
                                            <a href="/Edition/4781?fromArchive=True">2013 Report (29/06/2012)</a>                  
										</li>
                                        <li>
                                            <a href="/Edition/4781?fromArchive=True">2013 Report (29/06/2012)</a>                  
										</li>
                                    </ul>
                                </div>
                                <div class="divTableArticle">
                                    <h4>2012</h4>
                                    <ul>
                                        <li>
                                            <a href="/Edition/4781?fromArchive=True">2012 Report (29/06/2012)</a>    
										</li>
                                    </ul>
                                </div>
                                <div class="divTableArticle">
                                    <h4>2011</h4>
                                    <ul>
                                        <li>
                                            <a...

CSS

/**-- 3 Column Table  Using Divs
    Each Column can be any length
    --**/		
.divTable{
    width: 100%;
}
.divTableArticle{
    display: inline-block;
    vertical-align: top;
    width: 32%;                     
}

.divTableRow{
  clear: left;
    padding-top: 15px;
    margin-bottom: 10px;
    word-wrap:break-word;
}