当前位置: 首页 > 文档资料 > CSS 入门教程 >

text-decoration

优质
小牛编辑
122浏览
2023-12-01

描述 (Description)

text-decoration属性用于向内联内容添加“装饰”。

可能的值 (Possible Values)

  • none - 不应在内联文本中添加任何装饰。

  • underline - 在内联文本下方绘制下划线。

  • overline - 在内联文本上方绘制一条上线。

  • line-through - 应在内联文本的中间绘制一条线。

  • blink - 内联文本应闪烁,类似于Netscape引入的BLINK元素。

适用于 (Applies to)

所有HTML元素。

DOM语法 (DOM Syntax)

object.style.textDecoration = "underline";

例子 (Example)

以下是演示如何装饰文本的示例。

NOTE - Blink属性不适用于所有浏览器。

<html>
   <head>
   </head>
   <body>
      <p <b>style = "text-decoration:underline;"</b>>
         This will be underlined
      </p>
      <p <b>style = "text-decoration:line-through;"</b>>
         This will be striked through.
      </p>
      <p <b>style = "text-decoration:overline;"</b>>
         This will have a over line.
      </p>
      <p <b>style = "text-decoration:blink;"</b>>
         This text will have blinking effect
      </p>
   </body>
</html> 

这将产生以下结果 -

最后更新:

类似资料

  • 本文向大家介绍js中用cssText设置css样式的简单方法,包括了js中用cssText设置css样式的简单方法的使用技巧和注意事项,需要的朋友参考一下 如果网页中一个 id为“no”的标签,暂且当div标签来tell; 想要在js中设置这个div的css样式,很一般的做法是: 如果要设置一堆又一堆的css样式呢,太麻烦了把、 一般情况下都会结合css来添加className或者改变classN

  • 根据Flutter文档,我试图使用DecoratedBox加载一个全屏图像作为容器的背景图像。 但我得到以下错误: 显然,包没有正确解析。有人知道我到底做错了什么吗?

相关阅读