HTML - DOM Style 对象 maxWidth 属性



HTML DOM Style 对象的 **maxWidth** 属性用于设置或返回元素的最大宽度。它仅影响块级元素或具有固定或绝对定位的元素。

语法

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

属性值

描述
none 这是默认值,它不对最大宽度设置任何限制。
长度 它以长度单位指定元素的最大宽度。
百分比 它以父元素的百分比指定最大宽度
initial 它用于将此属性设置为其默认值。
inherit 它用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的最大宽度。

HTML DOM Style 对象“maxWidth”属性的示例

以下示例说明了如何设置 div 元素的最大宽度。

设置 div 元素的最大宽度

以下示例使用 **长度** 和 **百分比** 属性值设置 div 元素的最大宽度。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object maxWidth Property
    </title>
</head>
<body>
    <h3>
        Click to set maximum width.
    </h3>
    <button onclick="fun()">Set Max width</button>
    <button onclick="funTwo()">
        Set Max width in Percentage
    </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.maxWidth = "150px";
        }
        function funTwo() {
            document.getElementById("margin")
                .style.maxWidth = "40%";
        }
    </script>
</body>
</html>

获取 div 元素的最大宽度

以下示例获取 div 元素的最大宽度。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object maxWidth Property
    </title>
</head>
<body>
    <h3>
        Click to set maximum width.
    </h3>
    <button onclick="fun()">Get Max width</button>
    <button onclick="funTwo()">
        Set Max width in Percentage
    </button>
    <br>
    <p id="width"></p>
    <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() {
            let x = document.getElementById("margin")
                .style.maxWidth = "150px";
            document.getElementById("width")
                .innerHTML = "Max Width :" + x;
        }
        function funTwo() {
            let x = document.getElementById("margin")
                .style.maxWidth = "40%";
            document.getElementById("width")
                .innerHTML = "Max Width :" + x;
        }
    </script>
</body>
</html>

支持的浏览器

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