::before
or ::after
, ensuring you include the content
property.To add :before
and :after
pseudo-elements in Webflow, you'll need to use custom CSS code, as Webflow’s visual interface does not directly support them. Here's how to do it:
:before
or :after
effects.:before
or :after
Use standard CSS selectors with your class name and pseudo-element.
Example custom CSS:
If your element has the class "fancy-heading", your CSS might look like this:
<style>
`.fancy-heading::before {
content: "★ ";
color: gold;
margin-right: 5px;
}`</style>
Remember:
Use content
— it's required when using ::before
and ::after
.
Style it as needed (e.g., position
, color
, margin
, etc.).
This CSS is only rendered on published pages—changes won’t appear in Webflow Designer preview.
:before
and :after
effects will now show up.To use :before
and :after
in Webflow, add a unique class to your element and apply custom CSS using the Embed element or Page Settings. Webflow's Designer doesn't support these pseudo-elements natively, so the effects only show after publishing.