当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Style textDecoration属性用法及代码示例


DOM 样式 textDecoration 属性返回并在 HTML 文档中的元素文本上应用一个或多个装饰。

用法

以下是语法 -

  • 返回 textDecoration

object.style.textDecoration
  • 修改 textDecoration

object.style.textDecoration = “value”

在这里,价值可以是 -

解释
inherit它从其父元素继承此属性值。
initial它将此属性值设置为其默认值。
none它只是表示普通文本,即没有任何行的文本。
underline它在文本下设置一行。
overline它在文本上设置一行。
line-through它在文本中设置一行。

示例

让我们看一个样式 textDecoration 属性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color:#000;
      background:lightblue;
      height:100vh;
   }
   p {
      margin:1.5rem auto;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>DOM Style textDecoration Property Example</h1>
<p>This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.</p>
<button onclick="add()" class="btn">Set textDecoration</button>
<script>
   function add() {
      document.querySelector('p').style.textDecoration = "underline";
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

点击 ”Set textDecoration” 按钮来设置段落文本的下划线。

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style textDecoration Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。