我一直試圖擺脫文字之間的界限。我嘗試將邊框更改爲無,我也嘗試了文字修飾:無。兩者都不起作用。有人知道怎麼修這個東西嗎?從引導表中刪除邊框
.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>
也把你的HTML代碼。 – Dixit
使您的表格tr邊框爲無 – noobcode
嘗試添加tr,th,td {border:none; } to your css – PenAndPapers