嵌套表不在IE7中显示

时间:2012-12-12 21:26:40

标签: html css html5 html-table cross-browser

我在一个nestedTable的表中有一个嵌套表,它在IE7中没有出现,即使它存在于html中并且display不是none。下面是我的html,似乎是有效的,可以在Firefox,Chrome和IE8中使用:

<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>

0 个答案:

没有答案