此属性用于指定元素内容的文本方向。
用法:
<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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。