Html 为什么一个代码会出现此错误,而另一个代码不会出现此错误?如何修复此错误?

Html 为什么一个代码会出现此错误,而另一个代码不会出现此错误?如何修复此错误?,html,Html,这个错误只出现在第一个代码中,而不是第二个,为什么 我如何解决这个问题 Warning: A table row was 1 columns wide, which is less than the column count established by the first row (3). From line 1234, column 14; to line 1235, column 11 </td>↩ </tr>

这个错误只出现在第一个代码中,而不是第二个,为什么

我如何解决这个问题

 Warning: A table row was 1 columns wide, which is less than the column count established by the first row (3).

        From line 1234, column 14; to line 1235, column 11

             </td>↩      </tr>↩    <

    Table [validator.w3.org/nu/]
   My Code: https://jsfiddle.net/weLyog5t/3/1
    http://tabletest245.blogspot.com/1
    ----------------------------------------------

    Non-table **[Document checking completed. No errors or warnings to show.]**
    My Code:  https://jsfiddle.net/a1gspkak/4/1
    http://nontabletest.blogspot.com/
    -----------------------------------------
警告:表行的宽度为1列,小于第一行(3)建立的列数。
来自第1234行第14列;至第1235行第11列
↩      ↩    <
表[validator.w3.org/nu/]
我的代码:https://jsfiddle.net/weLyog5t/3/1
http://tabletest245.blogspot.com/1
----------------------------------------------
非表**[已完成文档检查。无需显示错误或警告。]**
我的代码:https://jsfiddle.net/a1gspkak/4/1
http://nontabletest.blogspot.com/
-----------------------------------------

您在JSFIDLE上的解决方案,因为您似乎真的忽略了建议

  • 在最后一列之后添加另一列
  • 删除最后一行的
    标记,因为它打开两次,关闭一次

  • 将类“三”或“二”添加到包含内容的列中,因此
    表的每一行中需要有相同数量的列,如果末尾只有一列,则添加另一个具有
    colspan
    属性的列以填充行的其余部分,例如
    colspan=“2”
    将填充两列。我在这里这样做了,它把底部的一切都搞糟了。可能是我该如何修复它的副本?@coding4532你做得不对。如果你这样做了,轻便摩托车的建议就行了。(你有额外的标签)