HTML tabindex विशेषता HTML दस्तावेज़ में किसी तत्व के टैब क्रम को परिभाषित करती है। यह एक वैश्विक विशेषता है जिसका अर्थ है कि इसका उपयोग किसी भी HTML तत्व पर किया जा सकता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
<tagname tabindex=”number”></tagname>
उदाहरण
आइए हम HTML tabindex Attribute का एक उदाहरण देखें -
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } p { font-size: 1.2rem; } </style> <body> <h1>HTML tabindex Attribute</h1> <p tabindex="5">I'm paragraph.</p> <p tabindex="4">I'm paragraph.</p> <p tabindex="3">I'm paragraph.</p> <p tabindex="2">I'm paragraph.</p> <p tabindex="1">I'm paragraph.</p> <p>Now, try to navigate through paragraph using tab key</p> </body> </html>
आउटपुट
अब टैब कुंजी का उपयोग करके अनुच्छेद के माध्यम से नेविगेट करने का प्रयास करें।