我有我的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`
`;
1条答案
按热度按时间eh57zj3b1#
使用
:last-child
选择器请参阅:https://www.techonthenet.com/css/selectors/last_child.php