我有一张桌子,我正在尝试为响应式设计正确格式化。我已经想出了如何在第一列中列出表的不同项目并且它们的不同属性在以下列中时如何执行此操作。
@media screen and (max-width: 480px) {
table {
width: 100%;
}
tbody td {
display: block;
text-align: center;
}
tbody td:before {
content: attr(data-th);
display: block;
text-align: center;
}
}
但是,如果我有一张桌子,我不知道如何做到这一点,其中项目的不同属性在不同的行中。例如,当两种产品进行比较时:
product a product b
100 200
5 years 7 years
我希望它能在这样的小屏幕上显示:
product a
100
5 years
product b
200
7 years
我现在拥有的是:
product a
product b
100
200
5 years
7 years
任何提示都非常感谢!
答案 0 :(得分:0)
是的,您可以使用CSS tricks来解决此问题。
你只需要设置这样的CSS:
@media screen and (max-width: 480px) {
/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr {
display: block;
}
/* Hide table headers (but not display: none;, for accessibility) */
thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}
tr { border: 1px solid #ccc; }
td {
/* Behave like a "row" */
border: none;
border-bottom: 1px solid #eee;
position: relative;
padding-left: 50%;
}
td:before {
/* Now like a table header */
position: absolute;
/* Top/left values mimic padding */
top: 6px;
left: 6px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
}
/*
Label the data
*/
td:nth-of-type(1):before { content: "product a"; }
td:nth-of-type(2):before { content: "product b"; }
}