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>