阅读量:0
``
css,/* 蓝色 */,.bluetable {, backgroundcolor: #f0f8ff;, bordercollapse: collapse;,},.bluetable th, .bluetable td {, border: 1px solid #4682b4;, padding: 8px;, textalign: left;,},.bluetable th {, backgroundcolor: #4682b4;, color: white;,},,/* 绿色 */,.greentable {, backgroundcolor: #e6ffe6;, bordercollapse: collapse;,},.greentable th, .greentable td {, border: 1px solid #008000;, padding: 8px;, textalign: left;,},.greentable th {, backgroundcolor: #008000;, color: white;,},,/* 红色 */,.redtable {, backgroundcolor: #ffcccc;, bordercollapse: collapse;,},.redtable th, .redtable td {, border: 1px solid #dc143c;, padding: 8px;, textalign: left;,},.redtable th {, backgroundcolor: #dc143c;, color: white;,},,/* 紫色 */,.purpletable {, backgroundcolor: #f5f0ff;, bordercollapse: collapse;,},.purpletable th, .purpletable td {, border: 1px solid #8a2be2;, padding: 8px;, textalign: left;,},.purpletable th {, backgroundcolor: #8a2be2;, color: white;,},,/* 橙色 */,.orangetable {, backgroundcolor: #fff7d7;, bordercollapse: collapse;,},.orangetable th, .orangetable td {, border: 1px solid #ffa500;, padding: 8px;, textalign: left;,},.orangetable th {, backgroundcolor: #ffa500;, color: white;,},,/* 黄色 */,.yellowtable {, backgroundcolor: #ffffcc;, bordercollapse: collapse;,},.yellowtable th, .yellowtable td {, border: 1px solid #f0e68c;, padding: 8px;, textalign: left;,},.yellowtable th {, backgroundcolor: #f0e68c;, color: black;,},,/* 灰色 */,.graytable {, backgroundcolor: #f0f0f0;, bordercollapse: collapse;,},.graytable th, .graytable td {, border: 1px solid #808080;, padding: 8px;, textalign: left;,},.graytable th {, backgroundcolor: #808080;, color: white;,},
``在网页设计中,表格是一种常见的信息组织和展示方式,通过美化CSS表格样式,可以大大提升网页的美观度和用户体验,本文将分享7种颜色的CSS表格样式,帮助您轻松打造个性化的网页表格。
1. 蓝色主题表格
蓝色通常给人一种稳重、专业的感觉,适合科技、教育等类型的网站,以下是蓝色主题表格的CSS样式代码:
table { width: 100%; bordercollapse: collapse; } th, td { border: 1px solid #336699; padding: 8px; textalign: left; } th { backgroundcolor: #4C74A2; color: white; } tr:nthchild(even) { backgroundcolor: #E0E5F1; } tr:hover { backgroundcolor: #B3CDE0; }
2. 绿色主题表格
绿色代表自然、健康,适用于环保、医疗等领域的网站,以下是绿色主题表格的CSS样式代码:
table { width: 100%; bordercollapse: collapse; } th, td { border: 1px solid #4C994C; padding: 8px; textalign: left; } th { backgroundcolor: #5CB85C; color: white; } tr:nthchild(even) { backgroundcolor: #DFF0D8; } tr:hover { backgroundcolor: #B2DB8A; }
3. 红色主题表格
红色具有强烈的视觉冲击力,适合活动、促销等场合,以下是红色主题表格的CSS样式代码:
table { width: 100%; bordercollapse: collapse; } th, td { border: 1px solid #CC3300; padding: 8px; textalign: left; } th { backgroundcolor: #D9534F; color: white; } tr:nthchild(even) { backgroundcolor: #F2DEDE; } tr:hover { backgroundcolor: #E77E7E; }
4. 紫色主题表格
紫色给人一种神秘、优雅的感觉,适合艺术、设计类网站,以下是紫色主题表格的CSS样式代码:
table { width: 100%; bordercollapse: collapse; } th, td { border: 1px solid #663399; padding: 8px; textalign: left; } th { backgroundcolor: #9933CC; color: white; } tr:nthchild(even) { backgroundcolor: #E6E6FA; } tr:hover { backgroundcolor: #B371DF; }
5. 橙色主题表格
橙色充满活力,适合运动、娱乐等领域,以下是橙色主题表格的CSS样式代码:
table { width: 100%; bordercollapse: collapse; } th, td { border: 1px solid #FF6600; padding: 8px; textalign: left; } th { backgroundcolor: #FF8C00; color: white; } tr:nthchild(even) { backgroundcolor: #FCEBD9; } tr:hover { backgroundcolor: #FFA07A; }
6. 黄色主题表格
黄色明亮、温暖,适合儿童、教育等领域,以下是黄色主题表格的CSS样式代码:
table { width: 100%; bordercollapse: collapse; } th, td { border: 1px solid #FFD700; padding: 8px; textalign: left; } th { backgroundcolor: #FFEB3B; color: black; } tr:nthchild(even) { backgroundcolor: #FFDAB9; } tr:hover { backgroundcolor: #FBC02D; }
7. 黑色主题表格
黑色简洁、大气,适合时尚、摄影等领域,以下是黑色主题表格的CSS样式代码:
table { width: 100%; bordercollapse: collapse; } th, td { border: 1px solid #000000; padding: 8px; textalign: left; } th { backgroundcolor: #212121; color: white; } tr:nthchild(even) { backgroundcolor: #303030; } tr:hover { backgroundcolor: #424242; }
FAQs(常见问题解答)
问题1:如何在HTML中使用这些CSS样式?