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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -