User:Star0/common.css

来自Rotaeno中文维基
< User:Star0
Star0讨论 | 贡献2022年7月17日 (日) 23:53的版本 (创建页面,内容为“table { width: 100%; border-collapse: collapse; } table caption { font-size: 2em; font-weight: bold; margin: 1em 0; } th, td { border: 1px solid #999; text-align: center; padding: 20px 0; } table th { background-color: #dfe3f3; color: #fff; } table tr:first-child th { background-color: #bac3ed; color: #fff; } table tbody tr:nth-child(odd) { background-color: #eee; } table tbody tr:hover { background-co…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
table {
    width: 100%;
    border-collapse: collapse;
}

table caption {
    font-size: 2em;
    font-weight: bold;
    margin: 1em 0;
}

th,
td {
    border: 1px solid #999;
    text-align: center;
    padding: 20px 0;
}

table th {
   background-color: #dfe3f3;
   color: #fff;
}

table tr:first-child th {
    background-color: #bac3ed;
    color: #fff;
}

table tbody tr:nth-child(odd) {
    background-color: #eee;
}

table tbody tr:hover {
    background-color: #ccc;
}

table tbody tr td:first-child {
    color: #f40;
}