JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<body>
<table class="table">
<tr><th>Address</th><th>Super Permits</th><th>Active?</th></tr>
<tr><td><div class="alert alert-info" role="alert"><h4><span class="glyphicon glyphicon-home" aria-hidden="true"></span> <strong>123 Main St.</strong></h4></div></td>
<td><div class="alert alert-success text-center" role="alert"><span class="glyphicon glyphicon-ok" aria-hidden="true"></span> Valid 2015 Season Funhouse Permit  <br><strong>Play Permit #19</strong></div></td>
<td><div class="alert alert-warning" role="alert">Fun Permit is <strong>Not Active</strong>,
<a href="activate_permit.php" class="alert-link">Click Here to Activate for Today</a>.</div></td> 
</tr>  
  <tr><td><div class="alert alert-info" role="alert"><h4><span class="glyphicon glyphicon-home" aria-hidden="true"></span> <strong>41 Main St.</strong></h4></div></td>
<td><div class="alert alert-success text-center" role="alert"><span class="glyphicon glyphicon-ok" aria-hidden="true"></span> Valid 2015 Season Funhouse Permit  <br><strong>Play Permit #19</strong></div></td>
<td><div class="alert alert-warning" role="alert">Fun Permit is <strong>Not Active</strong>,
<a href="activate_permit.php" class="alert-link">Click Here to Activate for Today</a>.</div></td> 
</tr>  
</table>
</body>

CSS

.alert {
  height: 90px
}