关键词
不起作用 选不到 失败
解释
input:first-child 要求既是input元素,而且是兄弟节点中的第一个
如果要找第一个input元素,那么用input:first-of-type
如果要用 first-child 最好是用后代组合器组合一下
.box :first-child {...}
假设有带box类的元素
标签:box,伪类,元素,child,input,first From: https://www.cnblogs.com/dou-fu-gan/p/17054480.html