I need to give space or break between two rows, so that my page will looks good.
if you look my code i had given many empty rows and column to make a space between t
The solution worked for me is defining css properties at column level and defining colspan as the number of columns in the table
Html -
<tr class="border_bottom">
<td colspan="6"></td>
</tr>
CSS -
tr.border_bottom td {
border-bottom: 1px solid #cccccc;
color: #707070;
}
table{
border-collapse: collapse;
}