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


HTML HR align用法及代碼示例


HTML DOM HR align屬性用於設置或返回<hr>元素的align屬性的值。

用法:

  • 它返回HR align屬性。
    hrobject.align;
  • 設置HR對齊屬性。
    hrobject.align="left | right | center"

屬性值:


  • left:它將left-align設置為水平線。
  • center:它將center-align設置為水平線。它是默認值。
  • right:它將right-align設置為水平線。

返回值:它返回一個表示HR元素對齊的字符串值。

範例1:本示例設置HR對齊屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML DOM hr align property</title> 
</head> 
  
<body> 
    <H1>GeeksForGeeks</H1> 
    <h2>DOM HR align Property</h2> 
    <p>There is a horizontal rule below this paragraph.</p> 
  
    <!-- Assigning id to 'hr' tag. -->
    <hr id="GFG" 
        align="left" 
        width="140px"> 
  
    <p>This is a horizontal rule above this paragraph.</p> 
    <button onclick="myGeeks()">Try it</button> 
  
    <script> 
        function myGeeks() { 
  
            // Accessing 'hr' tag.  
            var x =  
                document.getElementById("GFG").align =  
                "center"; 
        } 
    </script> 
</body> 
  
</html>

輸出:

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

範例2:本示例返回HR align屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML DOM hr align property</title> 
</head> 
  
<body> 
    <H1>GeeksForGeeks</H1> 
    <h2>DOM HR align Property</h2> 
    <p>There is a horizontal rule below this paragraph.</p> 
  
    <!-- Assigning id to 'hr' tag. -->
    <hr id="GFG" align="left" width="140px"> 
  
    <p>This is a horizontal rule above this paragraph.</p> 
    <button onclick="myGeeks()">Try it</button> 
    <h3 id="sudo"></h3> 
    <script> 
        function myGeeks() { 
  
            // Accessing 'hr' tag.  
            var x = document.getElementById("GFG").align; 
            document.getElementById("sudo").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>

輸出:

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

支持的瀏覽器:下麵列出了DOM HR align屬性支持的瀏覽器:

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


相關用法


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