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


HTML Style margin用法及代碼示例


DOM樣式margin屬性用於設置或返回元素的margin。我們可以為各個邊(上,右,下,左)設置不同的邊距大小。

保證金屬性可以具有以下值:

  1. 長度(厘米,像素,磅等)
  2. 元素的寬度%。
  3. 瀏覽器計算的保證金:自動。

用法:


  • 用於設置邊距屬性。
    object.style.margin = "%|length|auto|initial|inherit" 
  • 它用於獲取保證金屬性。
    object.style.margin 

屬性值:

描述
定義與父元素相比的百分比長度。
length 定義長度為ubit的長度。
auto 這是默認值。
initial 定義初始默認值。
inherit 從父元素繼承。

返回值:它返回一個字符串值,該字符串值表示元素的頂部,右側,底部,左側空白。

示例1:保證金屬性設置為四個值80px 40px 20px 90px,這意味著top = 80px,
右側= 40像素,底部= 20像素,左側= 90像素。

<html> 
  
<head> 
    <title> 
        HTML | DOM Style margin Property 
    </title> 
    <style> 
        h1 { 
            coor:green; 
        } 
          
        #GFG { 
            border:2px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>  
        GEEKSFORGEEKS  
    </h1> 
        <h2> 
        DOM Style margin Property 
    </h2> 
        <p id="GFG"> 
            Margin properties 
        </p> 
        <br> 
        <BUTTON ONCLICK="Geeks()">Submit</BUTTON> 
        <script> 
            function Geeks() { 
                document.getElementById("GFG").style.margin = 
                                        "80px 40px 20px 90px"; 
            } 
        </script> 
  
</body> 
  
</html>                                 

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

示例2:將所有四個邊距更改為單個邊距:25px;表示頂部,右側,底部和左側= 25px

<html> 
  
<head> 
    <title> 
        HTML | DOM Style margin Property 
    </title> 
    <style> 
        h1 { 
            coor:green; 
        } 
          
        #GFG { 
            border:2px solid green; 
            margin:60px 20px 90px 100px; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>  
        GEEKSFORGEEKS  
    </h1> 
        <h2> 
        DOM Style margin Property 
    </h2> 
        <p id="GFG"> 
            Margin properties 
        </p> 
        <br> 
        <BUTTON ONCLICK="Geeks()">Submit</BUTTON> 
        <script> 
            function Geeks() { 
                document.getElementById("GFG").style.margin =  
                                                      "25px"; 
            } 
        </script> 
  
</body> 
  
</html> 
                                         

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:以下列出了DOM Style margin屬性支持的瀏覽器:

  • 穀歌瀏覽器1.0
  • Internet Explorer 4.0
  • Firefox 1.0
  • Opera 3.5
  • 蘋果Safari 1.0


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Style margin Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。