Answers for "how to make an empty row in a table in html"

0

how to leave an empty row in html table

.blank_row
{
    height: 10px !important; /* overwrites any other rules */
    background-color: #FFFFFF;
}



<tr class="blank_row">
    <td colspan="3"></td>
</tr>
Posted by: Guest on August-07-2020

Code answers related to "how to make an empty row in a table in html"

Browse Popular Code Answers by Language