You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.element::before {
content: url(path/to/image.png); /* an image, for example, an icon */
}
.element::before {
content: "Note: "; /* a string */
}
.element::before {
content: "\201C"; /* also counts as a string. Escaping the unicode; renders it as a character */
}
The text was updated successfully, but these errors were encountered:
Not a real issue, more a little adjustment?
Article is about an
::after
pseudo-element and example is featuring::before
pseudo-element.http://tympanus.net/codrops/css_reference/after/
The text was updated successfully, but these errors were encountered: