Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để đặt cách dòng cuối cùng của một khối hoặc một dòng ngay trước khi bắt buộc ngắt dòng khi căn chỉnh văn bản được căn đều với JavaScript?


Sử dụng textAlignLast thuộc tính trong JavaScript để đặt dòng cuối cùng thành right . Đặt nó sang phải và cho phép căn chỉnh phù hợp.

Ví dụ

Bạn có thể thử chạy mã sau để trả về cách dòng cuối cùng của một khối hoặc một dòng ngay trước khi bắt buộc ngắt dòng khi căn chỉnh văn bản là "justify" bằng 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>