Я не совсем уверен, что это именно то, что вам нужно, но если вам нужна вертикальная таблица, вы можете использовать следующий формат HTML.
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
/*Separates the rows belonging to different items*/
tr:nth-child(2n):not(:last-child) { /*change this depending on the amount of rows per item i.e. 3 rows -> 3n */
border-bottom: 3px solid black;
}
<table class="table-base">
<tr>
<th>Name</th>
<td>Asha</td>
</tr>
<tr>
<th>Place</th>
<td>Hyderabad</td>
</tr>
<tr>
<th>Name</th>
<td>Neelima</td>
</tr>
<tr>
<th>Place</th>
<td>Bangalore</td>
</tr>
</table>