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


HTML Style height用法及代碼示例


HTML DOM樣式的height屬性類似於CSS Height屬性,但是它用於動態設置或獲取元素的高度。

用法:

  • 設置height屬性:
    object.style.height = auto|length|%|initial|inherit;
    
  • 要獲取height屬性值:
    object.style.height
    

屬性值:


描述
auto 默認值
length 以長度單位定義高度
與父元素相比,此百分比定義了高度。
initial 設置其默認值
inherit 從對象繼承屬性

返回值:給出元素高度的字符串。

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM Style height Property 
    </title> 
    <style> 
        p { 
            height:auto; 
            color:white; 
            font-size:50px; 
            background-color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <br> 
    <button onclick="Play()"> 
      Click to change height 
    </button> 
    <br /> 
    <br /> 
  
    <script> 
        function Play() { 
            document.getElementById( 
              "block").style.height = "200px" 
        } 
    </script> 
    <p id="block"> 
        Geeks For Geeks 
  
    </p> 
  
</body> 
  
</html>

輸出

  • 之前:
    HTML DOM Height Before gfg

    HTML DOM之前的高度

  • 後:
    HTML DOM Height after gfg

    之後的HTML DOM高度

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM Style height Property 
    </title> 
    <style> 
        div { 
            height:10px; 
            background-color:green; 
            width:100px; 
        } 
    </style> 
</head> 
  
<body> 
    <br> 
    <button onclick="Play()"> 
      Click to increase height of object 
    </button> 
    <br /> 
    <br /> 
  
    <script> 
        function Play() { 
            document.getElementById("block" 
               ).style.height = "100px" 
        } 
    </script> 
    <center> 
        <div id="block"> 
  
        </div> 
    </center> 
</body> 
  
</html>

輸出:

  • 之前:
    DOM Height example before gfg

    之前的DOM Height示例

  • 後:
    DOM height after gfg

    之後的DOM高度

支持的瀏覽器:下麵列出了DOM Style height屬性支持的瀏覽器:

  • 穀歌瀏覽器1.0
  • Internet Explorer 4.0
  • Firefox 1.0
  • Opera
  • Safari 1.0


相關用法


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