HTML - DOM Style 对象 resize 属性



HTML DOM Style 对象的 **resize** 属性指定用户是否可以调整或更改元素的高度和宽度。

语法

设置 resize 属性
object.style.resize= "none | both | horizontal | vertical | initial | inherit";
获取 resize 属性
object.style.resize;

属性值

描述
none 这是默认值,用户无法调整元素的大小。
both 指定用户可以更改元素的高度和宽度。
horizontal 指定用户可以更改元素的宽度。
vertical 指定用户可以更改元素的高度。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的 resize 属性。

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

在此示例中,我们使用了 resize 属性。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object resize Property
    </title>
    <style>
        #resize {
            height: 150px;
            width: 150px;
            border: 2px solid #04af2f;
            background-color: rgb(202, 249, 249);
            overflow: auto;
            }
    </style>
</head>
<body>
    <p>
        Click to resize.
    </p>
    <button onclick="fun()">Both</button>    
    <button onclick="funTwo()">Horizontal</button>
    <button onclick="funThree()">Vertical</button>
    <button onclick="funFour()">None</button>
    <br><br><br>
    <div id="resize">
        <p>Hello Everyone</p>
        <p>Welcome to Tutorials Point.</p>
    </div>
    <script>
        function fun() {
            document.getElementById("resize")
                .style.resize = "both";
        }
        function funTwo() {
            document.getElementById("resize")
                .style.resize = "horizontal";
        }
        function funThree() {
            document.getElementById("resize")
                .style.resize = "vertical";
        }
        function funFour() {
            document.getElementById("resize")
                .style.resize = "none";
        }         
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
resize 是 1 是 79 是 4 是 3 是 12.1
html_dom_style_object_reference.htm
广告