แอตทริบิวต์ dir ใน HTML ใช้เพื่อกำหนดทิศทางของเนื้อหาในองค์ประกอบ
ให้เราดูตัวอย่างการใช้แอตทริบิวต์ dir ใน HTML −
ตัวอย่าง
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>This is normal text.</p> <p dir="rtl">This text would get displayed from left to right.</p> </body> </html>
ผลลัพธ์
ในตัวอย่างข้างต้น เราได้ตั้งค่าข้อความปกติเป็นอันดับแรก −
<p>This is normal text.</p>
หลังจากนั้น เราได้แสดงข้อความที่มีทิศทางจากซ้ายไปขวาโดยใช้แอตทริบิวต์ dir -
<p dir="rtl">This text would get displayed from left to right.</p>