私はthisのようなhtml構造を持っていますが、それを修正する方法を理解できません。テーブル内の表と枠を折りたたむ方法
<table border="0" cellspacing="0" cellpadding="0" align="center" width="200px" class="external">
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
<tr>
<td>Lois</td>
<td>
<table border="0" cellspacing="0" cellpadding="0" align="center" width="100%" class="internal">
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
</tr>
</table>
</td>
</tr>
</table>
私は<td>
の内側に、外部テーブルとテーブルの間の境界線を折りたたむしたいと思います。 可能ですか?
その後、私は内部テーブルの境界を外部テーブルの別の色にしたいと思います。
これは何をしようとしていますか? http://codepen.io/anon/pen/dprxqk –
多かれ少なかれ。しかし、私はダブルボーダーを削除し、緑のものだけを残したいと思います。ありがとう。 –
このような? http://codepen.io/anon/pen/jrrPmE –