!DOCTYPE htmlhtmlheadmeta charset=UTF-8title/title/headstyle type=text/csstr:hover{background-color: greenyellow;}/stylebodytable border=1 bordercolor=red width=400 hei...
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<style type="text/css">
tr:hover{
background-color: greenyellow;
}
</style>
<body>
<table border="1" bordercolor="red" width="400" height="400" cellspacing="0" bgcolor="aqua" <!--background="img/3.jpg"-->>
<caption>表格标题</caption>
<tr>
<th>姓名</th><th>年龄</th><th>性别</th>
</tr>
<tr align="center">
<td>jack</td><td>18</td><td>男</td>
</tr>
<tr>
<td colspan="2">rose</td><td>女</td>
</tr>
<tr>
<td rowspan="2">tom</td><td>6</td><td>女</td>
</tr>
<tr>
<td>3</td><td>女</td>
</tr>
</table>
</body>
</html>
织梦狗教程
本文标题为:7.表格标签.html
基础教程推荐
猜你喜欢
- 使用php jquery ajax从mysql获取图像并在DIV中的html页面中显示它们 2023-10-26
- Ajax请求和Filter配合案例解析 2023-01-26
- 详解JS中continue关键字和break关键字的区别 2022-08-31
- Vue中的前后台交互 2023-10-08
- 快速解决ajax请求出错状态码为0的问题 2023-02-14
- CSS编辑工具Topstyle轻松打造网页风格 2022-10-16
- HTML+CSS制作心跳特效的实现 2022-09-20
- JavaScript事件的委托(代理)的用法示例详解 2023-08-12
- layui数据表格获取数据 2023-08-31
- vue-cli 卸载版本及安装指定版本的命令 2023-10-08
