如何在移动设备上将表列折叠成行?

时间:2015-08-30 21:13:48

标签: responsive-design zurb-foundation zurb-foundation-5

我正在开发一个以餐厅菜单为特色的网站。每件商品都有不同的尺码,每件都有不同的价格。这在使用表格的中型和大型设备上显示,每个价格都有一列:

Menu in columns

在移动设备上,屏幕太窄,无法正确显示每种产品最多4种不同尺寸。

所以我想将列折叠成行,每行以列名开头:

enter image description here

有可能使用响应式设计吗?我试图避免维护两个不同的HTML版本的内容,一个只在移动设备上可见,一个只在大屏幕上可见。

我正在使用Foundation 5,所以我理想地使用这个网格系统寻找解决方案,但我真的愿意接受任何解决方案。

2 个答案:

答案 0 :(得分:17)

解决方案涉及在移动设备上制作表格单元格display: block,并为每个单元格添加data-*属性,与列名称匹配。

此数据属性使用::before注入到单元格的content: attr()伪元素中。

示例:

<table>
    <thead>
        <tr>
            <th>Pasta</th>
            <th>Small</th>
            <th>Regular</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Spaghetti Bolognese</td>
            <td data-th="Small">£5.00</td>
            <td data-th="Regular">£7.00</td>
        </tr>
        <tr>
            <td>Lasagna</td>
            <td data-th="Small">£5.00</td>
            <td data-th="Regular">£7.00</td>
        </tr>
    </tbody>
</table>

CSS:

@media only screen and (max-width: 40em) {
    thead th:not(:first-child) {
        display: none;
    }

    td, th {
        display: block;
    }

    td[data-th]:before  {
        content: attr(data-th);
    }
}

您需要添加一些额外的float以使其漂亮。

工作示例:http://codepen.io/anon/pen/medrZo

答案 1 :(得分:0)

针对以上结果更改CSS

table {
    border-spacing: 0;
    }

    td,
    th {
    padding: 0.5em;
    }

    th {
    font-weight: bold;
    text-align: left;
    }

    thead th {
    background-color: #999;
    color: white;
    }

    td > div {
    float: right;
    }
@media screen and (max-width: 885px) {
thead th:not(:first-child) {
    display: none;
}

thead th:first-child:after {
    content: "'s";
}

td, th {
    display: block;
    width: 100% !important;
}
td:first-child {
    font-weight: bold;
}

td[data-th]:before {
    content: attr(data-th);
    border-radius: 10px 0px 0px 10px;
    font-weight: bold;
    min-width: 10rem;
    display: inline-block;
}

}