目录

style maxWidth 属性

示例

设置 <div> 元素的最大宽度:

document.getElementById("myDiv").style.maxWidth = "100px";
亲自试一试 »

描述

maxWidth 属性设置或返回元素的最大宽度。

maxWidth 属性仅对块级元素或具有绝对或固定位置的元素有效。

笔记:元素的宽度永远不能大于 maxWidth 属性指定的值。

提示:要设置或返回元素的最小宽度,请使用最小宽度属性。


浏览器支持

Property
maxWidth Yes Yes Yes Yes Yes

语法

返回 maxWidth 属性:

object.style.maxWidth

设置 maxWidth 属性:

object.style.maxWidth = "none| length|%|initial|inherit"

属性值

Value Description
none No limit on the width of the element. This is default
length Defines the maximum width in length units
% Defines the maximum width in % of the parent element
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 没有任何
返回值: 一个 String,表示元素的最大宽度
CSS版本 CSS2

更多示例

示例

返回 <div> 元素的最大宽度:

alert(document.getElementById("myDiv").style.maxWidth);
亲自试一试 »

相关页面

CSS教程:CSS尺寸

CSS 参考:最大宽度属性