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


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


HTML DOM Style tabSize 屬性返回並修改 HTML 文檔中用於製表符的空格長度。

用法

以下是語法 -

1.返回tabSize

object.tabSize

2.修改tabSize

object.tabSize = “value”

這裏的價值可以是 -

解釋
initial它將此屬性值設置為其默認值。
inherit它從其父元素繼承此屬性值。
length它指定製表符的長度。
number它指定 HTML 文檔中每個 tab-character 應該顯示的 space-characters 的數量。

讓我們看一個 HTML DOM 樣式 tabSize 屬性的例子 -

示例

<!DOCTYPE html>
<html>
<style>
   body {
      color:#000;
      height:100vh;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
      margin:1rem 0;
   }
   .square {
      width:100px;
      height:100px;
      background:#db133a6b;
      position:relative;
   }
   .show {
      font-size:1.2rem;
      margin:1rem 0;
   }
</style>
<body>
<h1>DOM Style tabSize Property Demo</h1>
<pre>I'mpreelement.</pre>
<button onclick="set()" class="btn">Change tabSize</button>
<script>
   function set() {
      document.querySelector('pre').style.tabSize = "20";
   }
</script>
</body>
</html>

輸出

點擊 ”Change tabSize” 按鈕來改變 pre 元素的 tabSize。

相關用法


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