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

JavaScript로 열을 채우는 방법은 무엇입니까?


columnFill 사용 열을 채우는 속성. 자동으로 채우면 순차적으로 채우고 균형을 맞춰 열 간에 콘텐츠를 균등하게 나눕니다.

예시

다음 코드를 실행하여 JavaScript로 채우기 열을 설정할 수 있습니다.

<!DOCTYPE html>
<html>
   <body>
      <p>Click below to create 4 columns</p>
      <button onclick="display()">Columns</button>
      <div id="myID">
         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.
         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>
      <script>
         function display() {
            document.getElementById("myID").style.columnCount = "4";
            document.getElementById("myID").style.columnFill = "balance";
         }
      </script>
   </body>
</html>