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


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


HTML DOM 樣式 textAlignLast 屬性返回並修改 HTML 文檔中塊級元素中文本最後一行的水平對齊方式。

用法

以下是語法 -

  • 返回 textAlignLast

object.style.textAlignLast
  • 修改 textAlign

object.style.textAlignLast = “value”

示例

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

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color:#000;
      background:lightblue;
      height:100vh;
   }
   p {
      border:2px solid #fff;
      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 textAlignLast 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.
</p>
<button onclick="add()" class="btn">Set textAlign</button>
<script>
   function add() {
      document.querySelector('p').style.textAlignLast = "right";
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

點擊 ”Set textAlignLast” 按鈕對齊段落元素內文本的最後一行。

相關用法


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