當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。