इंडेंटेशन सेट करने के लिए, textIndent का उपयोग करें संपत्ति।
उदाहरण
जावास्क्रिप्ट के साथ टेक्स्ट की पहली पंक्ति के इंडेंटेशन को वापस करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <div id = "myText"> This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </div> <br> <button onclick = "display()">Set Text Indent</button> <script> function display() { document.getElementById("myText").style.textIndent = "50px"; } </script> </body> </html>