How to put text inside pseudo elements in CSS?
Originally Published Here ๐!
To put text inside pseudo-elements like :before and :after, you can use the content property in the CSS and pass the text you want to be displayed as a string.
/* Put text in Pseudo element โ
*/
div:after {
content: "H...
melvingeorge-me.hashnode.dev1 min read