css 如何在html表格中不着色最后一列

ws51t4hk  于 2022-11-26  发布在  其他
关注(0)|答案(1)|浏览(138)

我有我的html表中的每一个偶数行灰色。我不希望这种样式在最后一列。最后一列的按钮应该是白色的。任何想法如何让这工作?

export const StyledTable = styled.table`
    border-collapse: separate;
    border-spacing: 0px;
    font-size: 15px;
`;

export const TR = styled.tr`
    :nth-child(even) {
        background-color: #e5eaee;
      }
`;

export const TH = styled.th`
    padding: 1rem;
    background-color: #e5eaee;

`;

export const TD = styled.td`
    padding: 1rem;
`;

export const TBody = styled.tbody``;
export const THead = styled.thead`
`;

相关问题