当前位置: 首页 > 文档资料 > HTML 入门教程 >

<table>

优质
小牛编辑
127浏览
2023-12-01

描述 (Description)

HTML

标记用于定义表。
table标记包含定义表结构的其他标记。

例子 (Example)

<!DOCTYPE html>
<html>
   <head>
      <title>HTML table Tag</title>
   </head>
   <body>
      <table border = "1">
         <tr>
            <th>Team</th>
            <th>Ranking</th>
         </tr>
         <tr>
            <td>India</td>
            <td>1</td>
         </tr>
         <tr>
            <td>South Africa</td>
            <td>2</td>
         </tr>
         <tr>
            <td>Australia</td>
            <td>3</td>
         </tr>
      </table>
   </body>
</html>

全局属性 (Global Attributes)

此标记支持 - HTML Attribute Reference描述的所有全局属性

具体属性 (Specific Attributes)

HTML

标记还支持以下附加属性 -
属性描述
abbrabbreviated_textDeprecated - 指定单元格中内容的缩写版本。
alignright left center justify charDeprecated - 视觉对齐。
bgcolorrgb(x,x,x) #hexcode colornameDeprecated - 指定表格的背景颜色。
borderpixelsDeprecated - 指定边框宽度。 值“0”表示没有边框。
cellpadding像素或%Deprecated - 指定单元格边框与其内容之间的间距。
cellspacing像素或%Deprecated - 指定单元格之间的间距。
framevoid above below hsides lhs rhs vsides box borderDeprecated - 与border属性一起使用,指定构成表格边框的框架的哪一侧。
rulesnone groups rows cols allDeprecated - 与border属性一起使用,指定在表格的单元格之间显示哪些规则。
summarytextDeprecated - 指定内容摘要。
width像素或%Deprecated - 指定表的宽度。

事件属性 (Event Attributes)

此标记支持 - HTML Events Reference描述的所有事件属性

浏览器支持 (Browser Support)

ChromeFirefoxIEOperaSafariAndroid
YesYesYesYesYesYes