HTML - DOM样式对象minHeight属性



HTML DOM 样式对象 **minHeight** 属性设置或返回元素的最小高度。它只影响块级元素或具有固定或绝对定位的元素。

语法

设置 minHeight 属性
object.style.minHeight= "length | percentage | initial | inherit";
获取 minHeight 属性
object.style.minHeight;

属性值

描述
长度单位 (length) 指定元素的最小高度,以长度单位表示。
百分比 (percentage) 指定元素的最小高度,为父元素高度的百分比。
初始值 (initial) 将此属性设置为其默认值。
继承 (inherit) 继承其父元素的属性值。

返回值

返回一个字符串值,表示元素的最小高度。

HTML DOM 样式对象 'minHeight' 属性示例

下面的示例将 div 元素的最小高度设置为 400px。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object minHeight Property
    </title>
    <style>
        #margin {
            border: 2px solid #04af2f;
            overflow: auto;
            width: 400px;
        }
    </style>
</head>
<body>
    <h3>
        Click to set minimum height.
    </h3>
    <button onclick="fun()">Set min Height</button>
    <br>
    <div id="margin">
        <p>
            CSS is the acronym for "Cascading 
            Style Sheet". It's a style sheet 
            language used for describing the 
            presentation of a document written 
            in a markup language like HTML. 
        </p>
        <p>
            CSS helps the web developers to 
            control the layout and other visual 
            aspects of the web pages. CSS plays 
            a crucial role in modern web development 
            by providing the tools necessary to 
            create visually appealing, accessible,
            and responsive websites.
        </p>
    </div>
    <script>
        function fun() {
            document.getElementById("margin")
                .style.minHeight = "400px";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
minHeight 是 1 是 12 是 3 是 1.3 是 4
html_dom_style_object_reference.htm
广告