Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 457 Bytes

tr标签不能嵌套的解决方案.md

File metadata and controls

24 lines (18 loc) · 457 Bytes

tr标签不能嵌套的解决方案

  • 由于tr标签不能嵌套,用td标签嵌套div标签来代替tr标签的嵌套
    <table id="storeTable" class="displayStore" border="1">
      <tr>
        <td>
          <div align="center">
    
          </div>
          <div align="center">
    
          </div>
          <div align="center">
    
          </div>
          <div align="center">
    
          </div>
        </td>
    </tr>
    </table>