Home  >  Article  >  Web Front-end  >  HTML tag

HTML tag

(*-*)浩
(*-*)浩Original
2019-11-09 14:21:253373browse

HTML63bd76834ec05ac1f4c0ebbeaafb0994 tag

HTML <caption> tag

##All browsers support the 63bd76834ec05ac1f4c0ebbeaafb0994 tag.

# Definition and usage (Recommended learning: html tutorial )

& lt; caption & gt;

63bd76834ec05ac1f4c0ebbeaafb0994 The label must immediately follow the table label. You can define only one title per table. Usually the title will be centered above the table.

Example

<html>

<body>

<h4>这个表格有一个标题,以及粗边框:</h4>

<table border="6">
<caption>我的标题</caption>
<tr>
  <td>100</td>
  <td>200</td>
  <td>300</td>
</tr>
<tr>
  <td>400</td>
  <td>500</td>
  <td>600</td>
</tr>
</table>

</body>

The above is the detailed content of HTML tag. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:HTML tagNext article:HTML tag