Reputation: 43
Is there anyway I can add a href link inside the :after
of an element with the property content
. I don't have access to the HTML files.
li#uploadMenu:after {
content: "\2699 \00a0 SUPPORT ";
}
Upvotes: 4
Views: 7658
Reputation: 40648
The content you add with the pseudo-elements like :before
and :after
don't appear in the DOM. Therefore you can't add HTML with the CSS content
property.
You can only add text with content
.
Upvotes: 6