gpt4 book ai didi

css - 缩短 CSS 代码

转载 作者:行者123 更新时间:2023-12-04 21:52:16 29 4
gpt4 key购买 nike

如何缩短这段 CSS 的代码?当它在移动 View 中时,它将隐藏表格的某些列。我的表有 137 列,我只想查看 5 列。

@media only screen and (max-width: 800px) {
#data th:nth-child(2),
#data td:nth-child(2),
#data th:nth-child(3),
#data td:nth-child(3),
#data th:nth-child(5),
#data td:nth-child(5),
#data th:nth-child(6),
#data td:nth-child(6),
#data th:nth-child(7),
#data td:nth-child(7),
#data th:nth-child(8),
#data td:nth-child(8),
#data th:nth-child(9),
#data td:nth-child(9),
#data th:nth-child(10),
#data td:nth-child(10),
#data th:nth-child(11),
#data td:nth-child(11),
#data th:nth-child(12),
#data td:nth-child(12) {display:none;}
}

最佳答案

下面的代码将选择第 5 个之后的每个 :nth-child..

@media only screen and (max-width: 800px) {
#data th:nth-child(n+5){
display:none;
}
}

此外,我还有一篇关于第 n 个子选择器的精彩文章:https://css-tricks.com/useful-nth-child-recipies/

关于css - 缩短 CSS 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30724926/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com