I've been trying to get rid of the lines in between the text. I've tried changing the borders to none, I've also tried text-decoration: none. Both doesn't work. Anyone know how to fix this?
.table {
font-size: 18px;
text-align: left;
text-decoration: none;
}
<table class="table borderless">
<thead>
<tr>
<th>Required and Nonrefundable Fee per Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registration Fee: per child</td>
<td>NT$50,000</td>
</tr>
<tr>
<td>Student Accident Insurance Fee: per child</td>
<td>NT$800</td>
</tr>
<tr>
<td>Parent Association Member Fee: per family</td>
<td>NT$1,000</td>
</tr>
</tbody>
</table>
Bootstrap By Building Projects - Includes Bootstrap 4 Use the border-top-0 class to remove the top border from an element.
Remove all borders to select the table and show the Table Design tab. On the Table Design tab, click the arrow next to Borders and then click No Border .
Delete a row or column Select a row or column that you want to delete. Press Backspace, or select the Table Tools Layout tab >Delete, and then select an option.
I copied your code and tried to change and get what you wanted. Finally I was able to get an answer.
tr{
border-top: hidden;
}
Tell me if this is what you wanted.
I think this will works..
.table>tbody>tr>td,
.table>tbody>tr>th {
border-top: none;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With