テーブル内にネストされたテーブルがありnestedTable
、HTML に存在し、表示が何もないにもかかわらず、IE7 に表示されません。以下は、Firefox、Chrome、およびIE8で有効で機能しているように見える私のhtmlです。
<table id="myTable">
<thead> ... </thead>
<tbody class="myTbody1">
<tr class="details">
<td>
<table id="nestedTable">
<thead>
<tr>
<th> Col1 </th>
<th> Col2 </th>
</tr>
</thead>
<tbody class="head">
<tr class="nestedRow">
<td> Data</td>
<td> Data</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
<tbody class="myTbody2">..</tbody>
<tbody class="myTbody3">..</tbody>
</table>