时间:2021-05-08
表格的基本语法
<table>...</table> - 定义表格
<tr> - 定义表行
<th> - 定义表头
<td> - 定义表元(表格的具体数据)
不带边框的表格:
复制代码代码如下:
<table>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food Drink Sweet A B C
跨多行、多列的表元(Table Span)
跨多列的表元 <th colspan=#>
跨多行的表元 <th rowspan=#>
表格尺寸设置
<table border=#>
边框尺寸设置:<table border width=# height=#>
表格尺寸设置:<table border cellspacing=#>
表元间隙设置:<table border cellpadding=#>
表元内部空白设置:表格内文字的对齐/布局
<tr align=#>
<th align=#> #=left, center, right
<td align=#>
复制代码代码如下:
<table border width=160>
<tr>
<th>Food</th><th>Drink</th><th>Sweet</th>
<tr>
<td align=left>A</td>
<td align=center>B</td>
<td align=right>C</td>
</table>
<tr valign=#>
<th valign=#> #=top, middle, bottom, baseline
<td valign=#>
复制代码代码如下:
<table border height=100>
<tr>
<th>Food</th><th>Drink</th>
<th>Sweet</th><th>Other</th>
<tr>
<td valign=top>A</td>
<td valign=middle>B</td>
<td valign=bottom>C</td>
<td valign=baseline>D</td>
</table>
表格在页面中的对齐/布局(Floating Table)
<table align=left>
My favorites...
cookies, chocolates, and more.
<table align=right>
Food Drink Sweet A B CMy favorites...
cookies, chocolates, and more.
<table vspace=# hspace=#> #=space value
My favorites...
cookies, chocolates, and more.
表格的标题
<caption align=#> ... </caption> #=left, center, right
复制代码代码如下:
<table border>
<caption align=center>Lunch</caption>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Lunch
Food Drink Sweet A B C<caption valign=#> ... </caption> #=top, bottom
valign=top is default.
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文将介绍如何使用js获取表格内某一单元格的内容,表格由table,tr,td等html标记组成。table表示表格,tr表示行,td表示行中列。1、一般的表格
JS对象之Table表格对象(摘抄)Table对象集合Table对象:表示HTML文档中的表,对于文档中每个标记,浏览器都创建一个Table对象.集合描述cel
strip_tags 去掉HTML及PHP的标记。 语法:stringstrip_tags(stringstr); 传回值:字串 函式种类:资料处理
strip_tags去掉HTML及PHP的标记。语法:stringstrip_tags(stringstr);传回值:字串函式种类:资料处理内容说明本函式可去掉
前言:今天来和大家详细说一下table-layout属性的用法。table{table-layout:fixed;}***本文关键