टेक्स्ट-एलाइन-लास्ट प्रॉपर्टी का इस्तेमाल टेक्स्ट की आखिरी लाइन को अलाइन करने के लिए किया जाता है। आप सीएसएस के साथ पाठ की अंतिम पंक्ति को संरेखित करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> .mydiv { text-align-last: right; } </style> </head> <body> <h1>text-align-last Property</h1> <div class = "mydiv"> <p>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.</p> </div> </body> </html>
आउटपुट