选择不使用类/ ID的元素

时间:2017-07-17 10:13:13

标签: html css element

如何在不使用Class / ID的情况下在CSS中选择我的3个输入?

这是一张图片: http://imgur.com/a/ECUQQ

1 个答案:

答案 0 :(得分:1)

直接使用标签

form > p:first-child,
form > p:nth-child(2),
form > p:nth-child(3) { 
    background-color: yellow;
}