CSS 2.1 快速導覽 - 文字方向 direction

direction 性質 (property) 為 CSS 中用來設定文字的方向,從左到右或是從右到左,有兩個關鍵字 (keyword)

  • ltr
  • rtl


舉例如下
.exampleltr {
    direction: ltr;
}

.examplertl { 
    direction: rtl;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:text20.css
    功能:示範 CSS 2.1 樣式表的使用 
    作者:張凱慶
    時間:西元 2011 年 7 月 */


我們以下面的 HTML 文件載入
<html>
<head>
<title>網頁標題</title>
<link rel="stylesheet" type="text/css" 
      href="text20.css">
</head>
<body>
<div class="exampleltr">
Free your mind.
</div>
<div class="examplertl">
Free your mind.
</div>
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:text20.html
     功能:示範 CSS 2.1 樣式表的使用 
     作者:張凱慶
     時間:西元 2011 年 7 月 -->


瀏覽器 (broswer) 開啟如下



中英文術語對照
函數function
性質property
瀏覽器broswer


您可以繼續參考

JavaScript 範例

文字相關


相關目錄
CSS 2.1 快速導覽
HTML, CSS 教材
首頁


參考資料
http://www.w3.org/TR/CSS21/visuren.html
https://developer.mozilla.org/en/CSS/direction

沒有留言: