css - Hyperlink in ::after in HTML -
this question has answer here:
- css after element insert mailto link? 5 answers
how can make hyperlink of ::after section in html, example:
<span>this example</span> span:after { content: "...read more"; }
output be:
this example...read more.
i want ...read more hyperlink. possible?
no, it’s not possible. generated content can take form of either static text or static image content, , not entire dom elements.
nor kind of thing ::after
meant used for. there no reason not mark hyperlink within document, since you're expressing link between document , other document.
Comments
Post a Comment