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;
}
CSS Notes:
- The “inherit”, “initial” and “unset” keywords can be used with any CSS property to set its value
- In CSS there are many ways to express a color value in a property
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.