What does + mean in CSS?

前端 未结 4 1543
暖寄归人
暖寄归人 2020-11-27 07:02

What does the + in this CSS rule mean?

h2 + p { 
  font-size: 1.4em; 
  font-weight: bold;
  color: #777         


        
4条回答
  •  春和景丽
    2020-11-27 07:29

    Only affects first p which is directly following (comes directly after) the H2

    example 1:

    example 2:

提交回复
热议问题