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

Làm cách nào để đặt chiều rộng cột và số lượng cột bằng JavaScript?


Để đặt chiều rộng cột và số lượng cột trong một khai báo, hãy sử dụng cột trong JavaScript tài sản.

Ví dụ

Bạn có thể thử chạy mã sau để đặt chiều rộng cột và số lượng cột bằng JavaScript -

<!DOCTYPE html>
<html>
   <head>
      <style>
         #myID {
            column-count: 4;
            column-rule: 4px solid yellow;
         }
      </style>
   </head>
   <body>
      <p>Click below to change the column count to 2 and minimum size</p>
      <button onclick="display()">Change Column count and set size</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.columns = "70px 2";
         }
      </script>
   </body>
</html>