I wanted to achieve the same as asked in this question but accepted answer did not work for me in May, 2018
(maybe answer is too old or some other reason). I am using bootsrap 3.3.7
and ionic v1
.
You need to set line-height
to do set height of specific row.
.blank_row {_x000D_
line-height: 3px;_x000D_
}
_x000D_
<table class="action_table">_x000D_
<tbody>_x000D_
<tr class="header_row">_x000D_
<td>Header Item</td>_x000D_
<td>Header Item 2</td>_x000D_
<td>Header Item 3</td>_x000D_
</tr>_x000D_
<tr class="blank_row">_x000D_
<td bgcolor="#000" colspan="3"> </td>_x000D_
</tr>_x000D_
<tr class="data_row">_x000D_
<td>Data Item</td>_x000D_
<td>Data Item 2</td>_x000D_
<td>Data Item 3</td>_x000D_
</tr>_x000D_
</tbody>_x000D_
</table>
_x000D_