河汉清且浅,牵牛敦而纯

 

td, th {
    padding: 3px 7px 2px 7px;
    font-weight: bold;

    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --天蓝色: #007aff;
    --深灰色: #e0e0e0

overflow: auto;   /* 滚动条 */
white-space: pre-wrap;   /* 让浏览器自动换行 */


    table { border-collapse: collapse; /*合并单元格边框*/ }
    table thead ,th {
        border: 1px solid #ddd;
        padding: 5px 7px 5px 7px;
        font-weight: bold;
        background-color: #eff3f5; /* #e0e0e0 深灰色 */
    }
    /* 定义奇数行样式 */
    table tr:nth-child(odd) {
        background-color: #f5f6f7; /* #007aff 天蓝色 */
    }
    /* 定义偶数行样式 */
    table tr:nth-child(even) {
    }
    table td{
        border: 1px solid #ddd; /*设置单元格边框为1像素的黑线*/
        padding: 7px; /*设置单元格内边距为5像素*/
    }

 

posted on 2024-02-15 17:28  伊索  阅读(2)  评论(0编辑  收藏  举报