Files
studycode/web_test/test3/tableTitle.css
2025-12-03 23:08:39 +08:00

13 lines
383 B
CSS

/* 表格标题(caption)样式定义,对应实验要求的标题样式 */
caption {
/* 标题字体粗细为bold */
font-weight: bold;
/* 标题字体大小为24px */
font-size: 24px;
/* 标题字体颜色为#0DAEB4 */
color: #0DAEB4;
/* 标题背景颜色为bisque */
background-color: bisque;
/* 标题行高为36px */
line-height: 36px;
}