use CSS3 not selector to only select elements that are not children of certain element -
for example how change color of p
not belong textarea
element?
p { color: #000; } textarea + p { color: #222; } p + textarea { color: #222; }
Comments
Post a Comment