css3实现文字下滑波浪线
上效果
上菜
text-decoration
属性
作用:用于设置或检索文本的装饰线,如下划线、上划线、删除线等text-decoration: line || color || style;
参数:
line
: 指定装饰线类型,如underline
(下划线)、overline
(上划线)、line-through
(删除线)。color
: 指定装饰线的颜色。style
: 指定装饰线的样式,如solid
(实线)、dotted
(点线)、dashed
(虚线)、double
(双线)、wavy
(波浪线)。
上代码
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>文字下滑波浪案例</title>
<style>
:root {
--icon-critical: #d30038;
}
h1 {
color: var(--icon-critical);
/* 兼容 WebKit 内核的浏览器 */
-webkit-text-decoration: underline wavy;
/* 标准属性 适用于所有现代浏览器 */
text-decoration: underline wavy;
}
</style>
</head>
<body style="margin: 0px;overflow: hidden;">
<h1> 你好,前端熊猫!!!</h1>
</body>
</html>