How do I target the next element in css?

前端 未结 1 984
感动是毒
感动是毒 2021-01-14 07:31

I\'m not sure if this is possible, but is it possible to identify the div just below the div class? If so, what would I use to do it?

相关标签:
1条回答
  • 2021-01-14 07:40

    Use +, the adjacent sibling selector:

    div.img-wrap + div
    {
    }
    
    0 讨论(0)
提交回复
热议问题