Answers for "css change text in p element"

CSS
7

css change text

IDENTIFIER {
	visibility: hidden;
	position: relative;
}
IDENTIFIER::after {
	visibility: visible;
	position: absolute;
	top: 0;
	left: 0;
	content: "NEW_CONTENT";
}
Posted by: Guest on June-19-2020
0

change text in a div css

.pvw-title span {
  display: none;
}
.pvw-title:after {
  content: 'whatever it is you want to add';
}
Posted by: Guest on January-09-2021

Browse Popular Code Answers by Language