我有以下CSS,试图进行响应式表格设计。
.table {
display: flex;
width: 100%;
flex-direction: column;
overflow-x: auto;
}
.table__row {
display: flex;
flex-flow: row nowrap;
}
.table__column {
flex-shrink: 0;
display: block;
align-items: center;
padding: .54rem 1.05rem;
width: 300px;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
这是一个JSFiddle:https://jsfiddle.net/abuer473/
问题在于,当用户向右滚动时,背景会丢失。我该如何解决?
答案 0 :(得分:2)
我能够通过向每个偶数行的列添加背景来解决此问题:-
css:
.table__row:nth-child(2n) > .table__column {
background: #AAA;
}
否则您可以写
css:
.table__row:nth-child(even) > .table__column {
background: #AAA;
}