HTML Element Style How to - Append to the end of paragraph








Question

We would like to know how to append to the end of paragraph.

Answer


<html>
<head>
<style>
p.abstract:after {<!--   ww  w. j  a va  2 s  .  c o  m-->
  content: "You need to register to read the full article.";
  color: #ff0000;
}
</style>
</head>
<body>
  <p class="abstract">This is the content.</p>
</body>
</html>

The code above is rendered as follows: