📜  使用 css 隐藏第一个类型元素,如何使用 css 代码示例隐藏元素
📅  最后修改于: 2022-03-11 14:47:27.690000             🧑  作者: Mango
代码示例1
.ctr-1 h3:first-of-type { display:none; }
/* - Or - */
.ctr-1 h3:nth-of-type(0) { display:none; }