【发布时间】:2018-07-16 04:15:20
【问题描述】:
我有以下 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/
问题是当用户向右滚动时,背景会丢失。我该如何解决这个问题?
【问题讨论】:
标签: html css-tables