JSFiddle - React, Tailwind, and code Playground
by Tan
HTML
<ul class="tlist">
<li class="tick">Loans from £50,000 to £5 million</li>
<li>Up to £20 million on some plans</li>
<li class="tick">Terms from 1 to 12 months</li>
<li>Up to 24 months on some plans</li>
<li class="tick">Rates from 0.44% per month</li>
<li>From 0.32% per month on some plans</li>
<li class="tick">Up to 75% Loan to Value</li>
<li>Open market value</li>
<li class="tick">No income proof required</li>
<li> </li>
<li class="tick">Poor credit history</li>
<li> </li>
<li class="tick">Maximum age typically 85</li>
<li>No age restriction on some plans</li>
<li class="tick">Desktop valuations</li>
<li>Available on many plans</li>
<li class="tick">Joint legal representation</li>
<li>Available on many plans</li>
<li class="tick">Very fast service</li>
<li> </li>
</ul>
CSS
.tlist li {width: 50%;float: left;border: solid #dedede;border-width:0 0 1px 0;line-height:30px;}
.tlist {padding-left:20px;text-indent:2px;list-style: none;list-style-position:outside; }
.tlist li:before {font-size:20px;content: '';margin-left: 0em;margin-right: 7px;}
.tlist .tick:before {font-size:20px;content: '✓ ';margin-left: -20px; margin-right: 5px;color:green;font-weight:bold;}
.tlist .tick {font-weight:bold;color:#405C9E;}
@media (max-width: 480px) {
.tlist li {width: 100%;float: none;}
.tlist .tick {border:0;}
}