Important Notice:

Course Content
Float Property
0/1
Z-Index
0/1
CSS object-fit Property
0/1
CSS Visibility Property
0/1
CSS (Chapter 4) M2-R5.1
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>

 

error: Content is protected !!