The ::after selector inserts something after the content of each selected element(s).

Example:

.selector::after { 
     content: " - Remember this";
}

Source: http://www.w3schools.com/CSSref/sel_after.asp