首页 前端知识 css3 table表格

css3 table表格

2024-02-10 19:02:01 前端知识 前端哥 439 17 我要收藏

使用CSS3来美化HTML表格(table)可以提高表格的外观和可读性

  1. 表格样式

    table { width: 100%; border-collapse: collapse; }
    • width: 100%; 使表格宽度充满其容器。
    • border-collapse: collapse; 合并相邻的表格边框,使表格看起来更整洁。
  2. 表头样式

    th { background-color: #f2f2f2; color: #333; font-weight: bold; }
    • background-color 设置表头背景颜色。
    • color 设置表头文字颜色。
    • font-weight: bold; 加粗表头文字。
  3. 表格边框样式

    table, th, td { border: 1px solid #ccc; }
    • border 设置表格、表头和表格单元格的边框。
  4. 奇偶行样式

    tr:nth-child(odd) { background-color: #f9f9f9; }
    • tr:nth-child(odd) 选择奇数行,并设置它们的背景颜色。
  5. 悬停效果

    tr:hover { background-color: #e1e1e1; }
    • tr:hover 当鼠标悬停在行上时,改变行的背景颜色。

这些是常见的样式属性。 CSS3还提供了更多高级的样式效果,如阴影、渐变、过渡等,可以用于更加复杂的表格设计。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/1678.html
标签
评论
发布的文章

jQuery&layui

2024-02-24 15:02:18

HTML/CSS JavaScript jQuery

2024-02-24 15:02:15

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!