html5 – Colspan没有在bootstrap表上工作

前端之家收集整理的这篇文章主要介绍了html5 – Colspan没有在bootstrap表上工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个嵌套的bootstrap表,我希望colspan可以使用它,但它似乎不起作用.

在一天结束时,我想最终得到这样的东西:

____________________
  |   Col1 | Col2      |
  |--------------------|
  |This is data I want |
  |--------------------|
  | Col 1  | Col 2     |
  ----------------------

我创建了这个fiddle来演示完整的功能.

解决方法

我修好了你的 fiddle
<tr class="child">
     <td colspan="7">
      <table>
         <tr>
            <td colspan="7">Expand This To Full Table</td>
          </tr>
      </table>
     </td>
</tr>
原文链接:https://www.f2er.com/html5/168374.html

猜你在找的HTML5相关文章