如何将文本显示方向包含在 HTML 中?
使用 HTML 中的 dir 属性来添加文本方向。
示例
你可以尝试运行以下代码,在 HTML 中包括文本显示方向 −
<!DOCTYPE html> <html> <body> <p>This is demo text from left-to-right.</p> <p dir = "rtl">This is demo text from right-to-left.</p> </body> </html>
广告
使用 HTML 中的 dir 属性来添加文本方向。
你可以尝试运行以下代码,在 HTML 中包括文本显示方向 −
<!DOCTYPE html> <html> <body> <p>This is demo text from left-to-right.</p> <p dir = "rtl">This is demo text from right-to-left.</p> </body> </html>