ใช้ textAlignLast คุณสมบัติใน JavaScript เพื่อตั้งค่าบรรทัดสุดท้ายเป็น right . ตั้งค่าไปทางขวาและอนุญาตให้จัดตำแหน่งที่ถูกต้อง
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อย้อนกลับว่าบรรทัดสุดท้ายของบล็อกหรือบรรทัดที่ถูกต้องก่อนการขึ้นบรรทัดบังคับจะถูกจัดตำแหน่งเมื่อ text-align เป็น "justify" ด้วย 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>