跳过HTML表格

前端之家收集整理的这篇文章主要介绍了跳过HTML表格前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
说我有下表:
<table>
  <tr>
    <td>Example</td>
    </td>One</td>
  </tr>
  <tr>
    <td>Example</td>
    </td>Two</td>
  </tr>
  <tr>
    <td>Example</td>
    </td>Three</td>
  </tr>
  <tr>
    <!--
    Here I want to skip the first <td> cell; use only second. Example:
    <td>(empty,possibly &nbsp;)</td>
    <td>blah blah blah</td>
    -->
  </tr>
</table>

如果您在最后一行中阅读了我的评论,您可以看到在最后一行中我想要在表格的第二列中显示某些内容,其中第一列为空.我该怎么做呢?

作为旁注,我在this SO question中阅读了问题/答案,但是colspan与我想要的不同.我也不熟悉css空单元,所以如果这是一个解决方案,请提供一些示例代码.

解决方法

HTML
<tr>
   <td></td>
   <td>content here</td>
</tr>

CSS

table {empty-cells:show;}

保留< td>空的,没有理由在那里放一个空间. &安培; NBSP;有时可能会有点滑稽,特别是在表格中.

原文链接:https://www.f2er.com/html/226357.html

猜你在找的HTML相关文章