• 密码登录
  • 手机登录
社交账号登录
阅读( ) 收藏( ) 加载中~ 我要纠错

代码实例

<!DOCTYPE html>
<html>
<head>
<style>
p
{
text-decoration: underline; 
text-decoration-style: wavy; 
-moz-text-decoration-style: wavy; /* 针对 Firefox 的代码 */
}
</style>
</head>

<body>
<p>
本实例中的段落文本下方会显示一条波浪线。</p>

<p><b>注意:</b>只有 Chrome 支持 text-decoration-style 属性。</p>
<p><b>注意:</b>Firefox 支持另一个可替代该属性的属性,即 -moz-text-decoration-style 属性。</p>

</body>
</html>

尝试一下 »

点击“尝试一下”按钮查看在线实例

CSS 语法

text-decoration-style: solid|double|dotted|dashed|wavy|initial|inherit;

属性值

描述
solid默认值。线条将显示为单线。
double线条将显示为双线。
dotted线条将显示为点状线。
dashed线条将显示为虚线。
wavy线条将显示为波浪线。
initial设置该属性为它的默认值。请参阅 initial
inherit从父元素继承该属性。请参阅 inherit


×