當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Style textOverflow屬性用法及代碼示例


DOM 樣式的 textOverflow 屬性返回並應用當文本流到 HTML 文檔中的元素容器之外時應該發生的情況。

用法

以下是語法 -

  • 返回 textOverflow

object.style.textOverflow
  • 修改 textOverflow

object.style.textOverflow = “value”

在這裏,價值可以是 -

解釋
inherit它從其父元素繼承此屬性值。
initial它將此屬性值設置為其默認值。
clip它剪輯溢出的文本。
ellipsis它設置一個省略號(“...”)來表示元素的剪輯文本。
string它將給定的字符串設置為表示元素的剪輯文本。

示例

讓我們看一個樣式 textOverflow 屬性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color:#000;
      background:lightblue;
      height:100vh;
   }
   p {
      margin:1.5rem auto;
      border:3px solid #fff;
      width:400px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:visible;
   }
   .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 textOverflow Property Example</h1>
<p>
   This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
   This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
   This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
</p>
<button onclick="add()" class="btn">Change textOverflow</button>
<script>
   function add() {
      document.querySelector('p').style.textOverflow = "ellipsis";
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

點擊 ”Change textOverflow” 按鈕更改溢出段落文本的行為。省略號在此處添加 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Style textOverflow Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。