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> |