To increase the space between text and an underline in Webflow and adjust the underline thickness, you need to use custom styling since Webflow’s native text decoration options are limited.
custom-underline
).To control spacing and thickness more flexibly, use a bottom border instead of an underline.
If applying this to a link:
If you need non-standard underline styles (e.g., wavy, dashed):
<style>
tag in Page Settings > Custom Code or in the Embed element with a class-based rule:text-decoration: underline
with text-decoration-thickness
and text-underline-offset
for modern browsers..custom-underline { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
Use a bottom border for full control over underline thickness and spacing, or apply custom CSS with text-underline-offset
and text-decoration-thickness
for more CSS-native styling. Webflow's visual editor supports borders better for this purpose than native underline controls.