我有5行(我可以将其更改为4或6)但完全有4个固定列,因为我想在移动视图中隐藏第3列,尝试添加以下CSS但没有任何效果。
@media(max-width:768px){。tablepress:nth-child(4n + 2){display:none!important; }}
答案 0 :(得分:1)
使用正确的css选择器..
tbody tr td:nth-child(3) { display : none}
表格标题同样使用
thead tr th:nth-child(3) { display : none}