Peudo Element/Class Selector

            CSS:
            <style>

                p:hover::after { content: " ADDED"; color: red; font-weight: bold; }

            </style>

            HTML:
            <p>Please point with mouse on me</p>
            

Result:


Please point with mouse on me


Try hover (mouse over) the paragraph. What do you get?