我想在這裏刪除黃色標記的邊框我附上了代碼。你能幫我解決這個問題嗎?我試圖谷歌它,但沒有找到任何結果。如何從桌面上刪除黃色標記的邊框?
CSS:
.table2 , .table2 th , .table2 tr, .table2 td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px;
width: 850px;
.table2 th.code {width: 12%}
.table2 th.title {width: 35%}
.table2 th.cgpa {width: 5%}
.table2 th.credit {width: 13%}
.table2 th.teacher {width: 35%}
.table1 table th, td, tr {
border: 1px solid white;
padding: 0px;
}
HTML:
<table class="table2">
<thead>
<th class="code">Subject Code</th>
<th class="title">Subject Title</th>
<th class="cgpa">CGPA</th>
<th class="credit">Credit Hours</th>
<th class="teacher">Course Teacher</th>
</thead>
<tbody>
/* there has other tables data*/
<tr>
<td>MAT-324</td>
<td>Statistics & Probability</td>
<td>4.00</td>
<td>3 Hours</td>
<td>Mr. Wahid Polash</td>
</tr>
<tr>
<td colspan="3"></td>
<td>Total</td>
<td>15</td>
</tr>
</tbody>
</table>
我想刪除黃標邊界:
所以找到導致黃色邊框的代碼並將其刪除。 – ceejayoz
顯然,我們需要查看您的代碼才能提供幫助。爲什麼不把它編輯成問題? – halfer
我已添加代碼 – Naim886