Answer:
"After"
Step-by-step explanation:
In CSS :after creates a pseudo-element that is the last child onf the selected element. It is commonly used to add cosmetic content after an element.
A simple use could be:
.text::after {
content: " SOME TEXT HERE";
color: red;
}