Hong Yen Vo
Hong Yen Vo

Reputation: 43

can I add a href link with the :before or :after content in CSS?

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

Answers (1)

Ivan
Ivan

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

Related Questions