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

::after

     यह pseudo element specify किये गए element के content के बाद कुछ और content add करने के लिए प्रयोग किया जाता है।

::after

       This pseudo element is used to add some more content after the content of the specified element.

Example:

 

<html>

<head>

<style>

p:after

{   

content:” Copyright 2024″;

}

</style>

</head>

<body>

<p>This is first paragraph</p>

<p>This is second paragraph<p>

</body>

</html>

 

error: Content is protected !!