I am working with a table that has multiple rows, specifically five. My goal is to decrease the space between the third and fourth rows.
Here is the code snippet:
<table>
<tr>
<td>First Row</td>
<td>1</td>
</tr>
<tr>
<td>Second Row</td>
<td>2</td>
</tr>
<tr>
<td>Third Row</td>
<td>3</td>
</tr>
<tr>
<td>Fourth Row</td>
<td>4</td>
</tr>
The output currently looks like this:
First 1
Second 2
Third 3
Fourth 4
I would like to eliminate the gap between the third and fourth rows as shown below:
First 1
Second 2
Third 3
Fourth 4
Is there a way to set the padding between the third and fourth row to 0 only? This would help reduce the gap between those specific rows.