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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。