blog/docs/code/html/html-table.md

17 lines
477 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 表格元素及相关样式
date: 2022-01-09 00:44:42
tags:
- HTML
categories: HTML
author: Anges黎梦
---
1、\<table\>标签:声明一个表格
2、\<tr\>标签:定义表格中的一行
3、\<td\>和\<th\>标签定义一行中的一个单元格td代表普通单元格th表示表头单元格它们的常用属性如下
- colspan 设置单元格水平合并,设置值是数值
- rowspan 设置单元格垂直合并,设置值是数值