About Lesson
:not()
यह selector specify की गयी class को छोड़कर बाकि दूसरे elements पर apply होता है।
:not()
This selector applies to all other elements except the specified class.
Example:
<html> <head> <style> p:not(#MyPara) { color:red; } </style> </head> <body> <p>This is first paragraph</p> <p id=”MyPara”>This is second paragraph</p> </body> </html> |