单选题

有以下 HTML 代码,在浏览器中显示正确的是(     )。
<table border="1">
 <tr>
     <th>Name</th>
     <th colspan="2">Tel</th>
 </tr>
 <tr>
         <td>Laura Welling</td>
     <td>555     77     854</td>
     <td>555     77     854</td>
</tr>
 </table>

【正确答案】 A
【答案解析】

本题考察 HTML 的基础知识。
colspan =number 规定 col 元素应该横跨的列数。
<table>标签定义 HTML 表格。简单的 HTML 表格由 table 元素以及一个 或多个 tr、th 或 td 元素组成。tr 元素定义表格行,th 元素定义表头,td 元 素定义表格单元。更复杂的 HTML 表格也可能包括 caption、col、colgroup、 thead、tfoot 以及 tbody 元素。
border 规定表格边框的宽度。