I am struggling to remove the horizontal lines from my HTML table
Although I have attempted using CSS properties like border-bottom
and border-top with a value of 0, they did not make any difference. On the other hand, border-right
and border-left
are functioning perfectly.
tr {
border-bottom: 0;
/* border-bottom:none; */
}
<table style="border:1px solid black;">
<tr>
<td style="padding:0px 15px 0px 65px;"><strong>Type</strong></td>
<td style="padding:0px 15px 0px 20px; "><strong>Quantitiy</strong></td>
<td style="padding:0px 15px 0px 0px;"><strong>price</strong></td>
<td style="padding:0px 15px 0px 0px;"><strong>total price</strong></td>
</tr>
<tr class="type">
<td style="padding:5px 15px 0px 65px;">{{type}}</td>
<td style="padding:5px 15px 0px 20px;">{{meters}}</td>
<td style="padding:5px 15px 0px 0px;">{{price}}</td>
<td style="padding:5px 15px 0px opx;">{{price_total}}</td>
</tr>
</table>
My objective is to eliminate those horizontal lines by using CSS such as border-bottom
, but so far, I have been unsuccessful.
I have just added psuedo code to illustrate how my table currently appears https://i.sstatic.net/r4BEX.png
I aim to get rid of those horizontal lines from cloth, shirt, pants straight away to the bottom for all the columns simultaneously