HTML में dir विशेषता का उपयोग किसी तत्व में सामग्री की दिशा निर्धारित करने के लिए किया जाता है।
आइए अब HTML में dir एट्रिब्यूट को लागू करने के लिए एक उदाहरण देखें -
उदाहरण
<!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>