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


HTML dir屬性用法及代碼示例


此屬性用於指定元素內容的文本方向。

用法:

<element dir = "ltr | rtl | auto">

屬性值:該屬性包含以下列出的三個值:

  • ltr:它是默認值。此值代表從左到右文本方向的文本。
  • rtl:此值代表從右到左文本方向的文本。
  • auto:讓瀏覽器根據內容找出文本方向。

範例1:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>dir attribute</title> 
        <style> 
            h1 { 
                color:green; 
            } 
            h1, h2 { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>dir attribute</h2> 
        <p dir="rtl">GeeksforGeeks:A  
        computer science portal for geeks</p> 
    </body> 
</html>

輸出:



範例2:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>dir attribute</title> 
        <style> 
            h1 { 
                color:green; 
            } 
            h1, h2 { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>dir attribute</h2> 
        <p dir="ltr">GeeksforGeeks:A  
        computer science portal for geeks</p> 
    </body> 
</html>

輸出:

支持的瀏覽器:dir屬性支持的瀏覽器如下:

  • Chrome
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari

相關用法


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