<table>
优质
小牛编辑
127浏览
2023-12-01
描述 (Description)
HTML
例子 (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
属性 | 值 | 描述 |
---|---|---|
abbr | abbreviated_text | Deprecated - 指定单元格中内容的缩写版本。 |
align | right left center justify char | Deprecated - 视觉对齐。 |
bgcolor | rgb(x,x,x) #hexcode colorname | Deprecated - 指定表格的背景颜色。 |
border | pixels | Deprecated - 指定边框宽度。 值“0”表示没有边框。 |
cellpadding | 像素或% | Deprecated - 指定单元格边框与其内容之间的间距。 |
cellspacing | 像素或% | Deprecated - 指定单元格之间的间距。 |
frame | void above below hsides lhs rhs vsides box border | Deprecated - 与border属性一起使用,指定构成表格边框的框架的哪一侧。 |
rules | none groups rows cols all | Deprecated - 与border属性一起使用,指定在表格的单元格之间显示哪些规则。 |
summary | text | Deprecated - 指定内容摘要。 |
width | 像素或% | Deprecated - 指定表的宽度。 |
事件属性 (Event Attributes)
此标记支持 - HTML Events Reference描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |