当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Style maxWidth用法及代码示例


maxWidth属性设置/返回元素的最大宽度。 maxWidth属性仅影响block-level元素,绝对或固定位置元素。

用法:

  • 它返回maxWidth属性。
    object.style.maxWidth
    
  • 它设置maxWidth属性。
    object.style.maxWidth = "none|length|%|initial|inherit"
    

值:

描述
none 元素宽度无限制的默认值
length 以长度为单位定义宽度的最大值
以父元素的百分比定义宽度的最大值
initial 将属性设置为其默认值
inherit 从其父元素继承

返回值:它返回元素的最大宽度。

示例1:以长度为单位设置宽度。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style maxWidth Property </title> 
</head> 
<style> 
    #Geek1 { 
        color:white; 
        width:300px; 
        background:green; 
    } 
</style> 
  
<body> 
    <center> 
        <h1 id="Geek1">  
                GeeksForGeeks  
            </h1> 
  
        <h2>DOM Style maxWidth Property </h2> 
        <br> 
        <button type="button" onclick="mygeeks()"> 
            Click to change 
        </button> 
  
        <script> 
            function mygeeks() { 
                
                //  set width using length unit. 
                document.getElementById( 
                  "Geek1").style.maxWidth = "220px"; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:

  • 在点击按钮之前:
  • 单击按钮后:

示例2:将宽度设置为“%”。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style maxWidth Property </title> 
</head> 
<style> 
    #Geek1 { 
        color:white; 
        width:50%; 
        background:green; 
    } 
      
    #Geek_Center { 
        background:yellow; 
        width:400px; 
        margin-left:150px; 
    } 
</style> 
  
<body> 
    <center id="Geek_Center"> 
        <h3 id="Geek1">  
                GeeksForGeeks  
            </h3> 
  
        <h2>DOM Style maxWidth Property </h2> 
        <br> 
  
        <button type="button" onclick="mygeeks()"> 
            Click to change 
        </button> 
  
        <script> 
            function mygeeks() { 
                
                // Set width using % . 
                document.getElementById( 
                    "Geek1").style.maxWidth = "35%"; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:

  • 在点击按钮之前:
  • 单击按钮后:

支持的浏览器:HTML | DOM样式的maxWidth属性如下所示:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自PranchalKatiyar大神的英文原创作品 HTML | DOM Style maxWidth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。