为什么我的HTML源代码不能识别我的open td标签?

时间:2014-06-30 19:14:56

标签: html

出于某种奇怪的原因,在我的HTML文件中查看源代码时,有一个红色的结束td标记。当我将鼠标悬停在它上面时,我收到一条通知,说“结束标记”td“看到但没有打开的元素”。

我的浏览器输出正常,但由于此语法问题,我的HTML未转换为PDF格式。

任何人都可以帮我找一个解决方案吗?谢谢!

    <table id='order_info_container'>
   <tr><td>
    <img id='o_summary_logo' src='o_summary_logo.png'>
    </td>

    <td id='customer_service'>
    <b>Customer Service # (212)-233-5751<br>
    Thank you for your business
    </td> //My source code is telling me that there is no open tag for this ending tag?
    </tr></table>

2 个答案:

答案 0 :(得分:5)

因为您没有关闭粗体标记

<td id='customer_service'>
   <b>Customer Service # (212)-233-5751<br>
              Thank you for your business</b> <!---- here -->
</td>

答案 1 :(得分:4)

<b>Customer Service # (212)-233-5751<br>

应该是

<b>Customer Service # (212)-233-5751</b>