Computer >> Computer tutorials >  >> Programming >> CSS

Which element is used to insert some content after an element with CSS


Use the :after element to add some content after an element. 

Example

You can try to run the following code to insert some content after an element with CSS −

<html>
   <head>
      <style>
         p:after
         {
            content: url(/https/www.wsxdn.com/images/bullet.gif)
         }
      </style>
   </head>
   <body>
      <p> This line will be succeeded by a bullet.</p>
      <p> This line will be succeeded by a bullet.</p>
      <p> This line will be succeeded by a bullet.</p>
   </body>
</html>