What does + mean in CSS?

前端 未结 4 1541
暖寄归人
暖寄归人 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:30

    it selects all P tags that are directly beside an h2 tag. Then gives it the said attributes.

提交回复
热议问题