::after Pseudo-Element Example

Free lunch for everyone!

Here is the code.

In the document head or the style sheet.

div.afterExample::after {
				color : red ;
		    		content: "<= Disclaimer We are not responsible for the content here! " ;
				font-weight: bold ;
}

In the HTML body

<div class="afterExample">
				Free lunch for everyone! 
</div>
The ::after Pseudo Element adds the rest.