direction屬性指定了網頁中區塊級元素內文字的方向。
我們使用style屬性在HTML中設定文字方向。 style屬性為區塊內的元素指定了內聯樣式。 style屬性與CSS屬性direction一起使用,用於設定文字的方向。
以下是使用CSS屬性設定文字方向(從右到左)的語法。
<p style = "direction: rtl;">The text…</p>
以下是在 HTML 中設定
元素方向的範例程式。
<!DOCTYPE html> <html> <head> </head> <body> <p style = "direction: rtl;"> whiteboards are so often at the core of a collaborative process </p> </body> </html>
以下是在 HTML 中設定
<!DOCTYPE html> <html> <head> </head> <body> <h2 style = "direction: rtl;"> Hallowen season it is... </h2> </body> </html>
以下是在HTML中設定
<!DOCTYPE html> <html> <head> </head> <body> <ul style = "direction: rtl;"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> </body> </html>
以上是如何使用HTML顯示從右到左的文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!