June 17, 2013
What does "+" mean in css. Help me?
Smartuser’s Question:
What does the “+” symbol stand for in css style. What does the below code infer
#mainDiv label + a { }
+
means adjacent selector.
In your case it means if <a>
tag is found directly after <label>
tag inside the mainDiv
then apply the css.