此屬性用於指定元素內容的文本方向。
用法:
<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
相關用法
- HTML <dir> compact屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML5 MathML dir屬性用法及代碼示例
- HTML <dir>用法及代碼示例
- HTML DOM dir用法及代碼示例
- HTML Bdo dir用法及代碼示例
- PHP dir()用法及代碼示例
- PHP dir()用法及代碼示例
- Node.js fs.Dir.read()用法及代碼示例
- Node.js fs.Dir.close()用法及代碼示例
- Node.js fs.Dir.readSync()用法及代碼示例
- Node.js fs.Dir.closeSync()用法及代碼示例
- Node.js fs.Dir.path()用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML scoped屬性用法及代碼示例
- HTML <th> valign屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML poster屬性用法及代碼示例
- HTML Class屬性用法及代碼示例
- HTML style屬性用法及代碼示例
- HTML oninvalid用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 HTML | dir Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。