About Lesson
:target
href में url को # के साथ भी लिखा जाता हैं। #url किसी Particular ID को Target करता हैं। इस ID से related Element को Target करने के लिए इस का इस्तेमाल किया जाता हैं।
:target
URL is also written with # in href. #url targets a particular ID. It is used to target the element related to this ID.
Example:
<html> <head> <style> :target { background-color:yellow; } </style> </head> <body> <a href=”#MyPara”>Go to My Paragraph</a> <p id=”MyPara”> This is my paragraph.</p> </body> </html> |