Beschreibung:

You want to replace “Original Text” with different content. Here’s how you can replace that text using only CSS.


Möglichkeit 1
.replaced {
	visibility: hidden;
	position: relative;
}

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