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


CSS text-orientation用法及代碼示例


CSS中的text-orientation屬性用於設置字符在一行中的方向。此屬性在垂直腳本中很有用,例如創建垂直表標題,定義行名等。

用法:

text-orientation:mixed|upright|sideways;

屬性:



  • mixed:該值用於將文本字符順時針旋轉90度。它是默認值。

    例:

    <!DOCTYPE html> 
    <head> 
        <title> 
            CSS | text-orientation Property 
        </title> 
          
        <style> 
            h1 { 
                color:green; 
            } 
            p { 
                writing-mode:vertical-rl; 
                text-orientation:mixed; 
            } 
        </style> 
    </head> 
      
    <body> 
        <h1>GeeksforGeeks</h1> 
              
        <p>A Computer Science Portal</p> 
    </body> 
      
    </html>

    輸出:

  • upright:此值從屏幕右側開始到文本下方。
    Example:
    <!DOCTYPE html> 
    <head> 
        <title> 
            CSS | text-orientation Property 
        </title> 
          
        <style> 
            h1 { 
                color:green; 
            } 
            p { 
                writing-mode:vertical-rl; 
                text-orientation:upright; 
            } 
        </style> 
    </head> 
      
    <body> 
        <h1>GeeksforGeeks</h1> 
              
        <p>A Computer Science Portal</p> 
    </body> 
      
    </html>

    輸出:

  • sideways:此值將文本線順時針旋轉為90度。

    例:

    <!DOCTYPE html> 
    <head> 
        <title> 
            CSS | text-orientation Property 
        </title> 
          
        <style> 
            h1 { 
                color:green; 
            } 
            p { 
                writing-mode:vertical-rl; 
                text-orientation:sideways; 
            } 
        </style> 
    </head> 
      
    <body> 
        <h1>GeeksforGeeks</h1> 
              
        <p>A Computer Science Portal</p> 
    </body> 
      
    </html>

    輸出:

注意:text-orientation屬性取決於writing-mode屬性,如果未在horizontal-tb上設置,則此屬性將起作用。

支持的瀏覽器:下麵列出了text-orientation屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • Firefox
  • Opera



相關用法


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