I am attempting to achieve solid black table borders on my HTML table in Jupyter Notebook. I executed the following code within a markdown cell:
<table {style="border-style: solid;"}>
<tr>
<td>parameter
</td>
<td>unit
</td>
<td>value
</td>
</tr>
<tr>
<td>$RR$
</td>
<td>$\text{[-]}$
</td>
<td>0.03
</td>
</tr>
</table>
However, I desire each cell in the table (both td and tr elements) to display their own border. Is there any alternative method to accomplish this other than individually adding {style="border-style: solid;"}
to each td and tr element?
Implementing table borders should be a straightforward feature. It should not be this complicated.