textAlignLast का प्रयोग करें अंतिम पंक्ति को दाएं . पर सेट करने के लिए JavaScript में संपत्ति . इसे दाईं ओर सेट करें और सही संरेखण की अनुमति दें।
उदाहरण
जब टेक्स्ट-एलाइन जावास्क्रिप्ट के साथ "जस्टिफाई" होता है, तो एक मजबूर लाइन ब्रेक से ठीक पहले ब्लॉक या लाइन की अंतिम पंक्ति को कैसे संरेखित किया जाता है, यह वापस करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <style> #myDIV { text-align: justify; } </style> </head> <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. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. 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> <button onclick = "display()"> Set Alignment </button> <script> function display() { document.getElementById("myText").style.textAlignLast = "right"; ; } </script> </body> </html>