隐藏移动视图的表列

时间:2018-01-31 19:32:58

标签: html css wordpress

我有5行(我可以将其更改为4或6)但完全有4个固定列,因为我想在移动视图中隐藏第3列,尝试添加以下CSS但没有任何效果。

@media(max-width:768px){。tablepress:nth-​​child(4n + 2){display:none!important; }}

1 个答案:

答案 0 :(得分:1)

使用正确的css选择器..

tbody tr td:nth-child(3) { display : none}

表格标题同样使用

thead tr th:nth-child(3) { display : none}