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


HTML Style paddingBottom用法及代碼示例


Style paddingBottom屬性用於設置或返回元素的底部填充。 padding屬性將用戶所需的空間插入到元素的邊界內。

用法:

  • 要獲得該屬性:
    object.style.paddingBottom
  • 設置屬性值:
    object.style.paddingBottom = "%|length|initial|inherit"

屬性值:


  • %:它用於定義父元素寬度百分比的底部填充。
  • length:它用於定義長度單位的底部填充。
  • initial:它用於將此屬性設置為其默認值。
  • inherit:它用於從其父元素繼承此屬性。

以下示例程序旨在說明style paddingBottom屬性方法:

示例:設置<div>元素的底部填充。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Style paddingBottom in HTML</title> 
    <style> 
        #MyElement { 
            border:1px solid black; 
            background-color:green; 
            width:300px; 
            height:300px; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Style paddingBottom</h2> 
  
    <p>For setting the bottom padding,  
      double click the "Apply Bottom Padding" button:</p> 
    <br> 
  
    <button ondblclick="padding()">Apply Bottom Padding</button> 
  
    <div id="MyElement"> 
        Geeksforgeeks is a portal for geeks. 
    </div> 
  
    <script> 
        function padding() { 
            document.getElementById("MyElement") 
            .style.paddingBottom = "100px"; 
        } 
    </script> 
  
</body> 
  
</html>         

輸出:

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

支持的瀏覽器:HTML支持的瀏覽器| DOM樣式paddingBottom屬性在下麵列出:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • 蘋果Safari


相關用法


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