Is there a way to have the span element expand to full height?
<table class="table table-condensed table-hover table-striped">
<thead>
<tr>
<th class="shrink"></th>
<th class="shrink">AAA</th>
<th class="shrink">BBB</th>
<th class="shrink">CCC</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center"><span class="label label-default"><span class="glyphicon glyphicon-plus"></span></span></td>
<td>1<br>1<br>1<br>1<br>1<br></td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td class="text-center"><span class="glyphicon glyphicon-plus"></span></td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td class="text-center"><span class="glyphicon glyphicon-plus"></span></td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</tbody>
<table>
I've tried various methods but none seem to work. I need a simple solution such as setting the height to 100%.
Update: Desired outcome: