我試圖做類似如下的表:表與自定義邊框
這裏是我的代碼:
<table bordercolor="#000000">
<tr>
<th width="200" style="border-right: 2px dashed; border-bottom: 2px dashed;">
Player1 Status
</th>
<th width="200" style="border-right: 2px dashed; border-bottom: 2px dashed;">
Player2 Status
</th>
<th width="200" style="border-right: 2px dashed; border-bottom: 2px dashed;">
Player3 Status
</th>
<th width="200" style="border-bottom: 2px dashed;">
Player4 Status
</th>
</tr>
<tr>
<td width="200" style="border-right: 2px dashed;">Your Trun!</td>
<td width="200" style="border-right: 2px dashed;">Not Your Turn!</td>
<td width="200" style="border-right: 2px dashed;">Not Your Turn!</td>
<td width="200">Not Your Turn!</td>
</tr>
<tr>
<td width="200" style="border-right: 2px dashed;">Remaining Moves: 5</td>
<td width="200" style="border-right: 2px dashed;">Remaining Moves: 5</td>
<td width="200" style="border-right: 2px dashed;">Remaining Moves: 5</td>
<td width="200">Remaining Moves: 5</td>
</tr>
</table>
但是,消除Your Trun!
,當我面臨的一個問題聲明中,表格將如下所示:
我該如何解決這個問題?
您可能想看看使用CSS類這使它更容易一些改變,你應該想。 – Chris