Making a table with horizontal line only
the css for the horizontal dividers is:
th, td {
border-bottom: 1px solid #ddd;
}
see: https://www.w3schools.com/css/css_table.asp
Potentially like this (jsfiddle):
table {
border-collapse: collapse;
width: 100%;
}
tr {
border-bottom: 1px solid #ccc;
}
th {
text-align: left;
}
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jose</td>
<td>25</td>
</tr>
<tr>
<td>Alberto</td>
<td>32</td>
</tr>
</tbody>
</table>