How can i make a hyperlink of a ::after section in HTML, for example:
<span>This is an example</span>
span:after
{
content: "...read more";
}
output will be:
This is an example...read more.
I want ...read more to be hyperlink. Is that possible?