CSS
HTML
JavaScript
jQuery
PHP
SQL
WordPress
CSS Snippets

Code Snippet

Replacing text is usually done on the server side or with JavaScript, but there may be times when replacing text using CSS is the only viable solution.

Below we have a paragraph of text and need to replace it.

				
					<p class="my_text">This text needs to be replaced.</p>
				
			

Hiding the Original Text

First we need to hide the existing text and make the container element relative.

				
					.my_text {
    visibility: hidden;
    position: relative;
}
				
			

Showing the New Text

Then we need to add the new text in the exact same position using the ::after pseudo element and absolute positioning.

The content is created, visibility for the ::after element set to visible, and the new element set to be positioned absolutely at top: 0, left: 0 which places it over the hidden original text.

				
					.my_text::after {
    content: "This text replaces the original.";
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
}
				
			

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

CSS
HTML
JavaScript
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.