目录

style resize 属性

示例

使 <div> 元素可调整大小:

document.getElementById("myDIV").style.resize = "both";
亲自试一试 »

描述

resize 属性指定用户是否可以调整元素的大小。

笔记:resize 属性适用于计算出的溢出值不是 "visible" 的元素。


浏览器支持

Property
resize Yes 79.0 Yes Yes 15.0

语法

返回调整大小属性:

object.style.resize

设置调整大小属性:

object.style.resize = "none|both|horizontal|vertical|initial|inherit"

属性值

Value Description
none Default value. The user cannot resize the element
both The user can adjust both the height and the width of the element
horizontal The user can adjust the width of the element
vertical The user can adjust the height of the element
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 没有任何
返回值: 一个 String,表示元素的 resize 属性
CSS版本 CSS3

相关页面

CSS 参考:调整属性大小