✏️ CSS文本装饰生成器

装饰线类型

装饰线样式

预览

CSS 文本装饰效果预览 The quick brown fox jumps over the lazy dog

生成的 CSS 代码

text-decoration: underline; text-decoration-style: solid; text-decoration-thickness: 2px; text-decoration-color: #06b6d4; text-underline-offset: 4px;

CSS text-decoration 简写语法

text-decoration: underline solid #06b6d4 2px;

使用说明

CSS text-decoration 系列属性控制文本装饰线的外观:
text-decoration-line — 指定装饰线类型:下划线(underline)、上划线(overline)、删除线(line-through)
text-decoration-style — 线型:实线(solid)、双线(double)、点线(dotted)、虚线(dashed)、波浪线(wavy)
text-decoration-thickness — 线的粗细(从细到粗)
text-decoration-color — 装饰线颜色
text-underline-offset — 下划线距文字基线的偏移距离
提示: 缩写语法:text-decoration: underline solid #06b6d4 2px;