html表格颜色代码怎么写

html表格颜色代码怎么写,第1张

下面的例子指定边框的颜色,和th元素的文本和背景颜色:

例<html>

<head><style>

table, td, th

{

border:1px solid green;

}

th

{

background-color:green;

color:white;

}

</style></head><body>

<table>

<tr>

<th>Firstname</th>

<th>Lastname</th>

<th>Savings</th>

</tr>

<tr>

<td>Peter</td>

<td>Griffin</td>

<td>$100</td>

</tr></table></body></html>

1、使用标签<table></table>定义网页的表格,使用style赋值类型将显示在网页。

2、使用<tr>标签定义行,使用<th>定义表头,表头的文字自动加粗。

3、<tr>和<td>标签配合,定义每行中的表格数量,现在定义3行5列的表格。

4、使用<caption></caption>定义表格的标题。

5、表格分为三个部分,表头部,表主体,表尾部。

6、表头部和主体分别放标题和表格的内容,而表的尾部通常放的是页数。

create table Department

(

departId char(2) not null primary key ,

departName varchar(30) not null

)

create table Speciality

(

specId char(4) not null primary key ,

specName varchar(30) not null ,

departId char(2) null ,

foreign key(departId) references Department(departId)

)

create table Class

(

classId char(8) not null primary key ,

className varchar(30) null ,

specId char(4) null ,

departId char(2) null ,

remark varchar(30) null ,

foreign key(specId) references Speciality(specId) ,

foreign key(departId) references Department(departId)

)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/12187494.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存