Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript로 text-align이 정당화될 때 강제 줄 바꿈 바로 앞의 줄이나 블록의 마지막 줄을 정렬하는 방법을 설정하는 방법은 무엇입니까?


textAlignLast 사용 마지막 줄을 오른쪽으로 설정하는 JavaScript 속성 . 오른쪽으로 설정하고 오른쪽 정렬을 허용합니다.

예시

다음 코드를 실행하여 텍스트 정렬이 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>