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

Làm gì với nội dung hiển thị bên ngoài hộp phần tử bằng JavaScript?


Nếu nội dung hiển thị bên ngoài hộp phần tử, hãy sử dụng tràn thuộc tính để thêm một cuộn. Điều này sẽ giúp khách truy cập dễ dàng đọc toàn bộ nội dung.

Ví dụ

Bạn có thể thử chạy mã sau để tìm hiểu cách làm việc với thuộc tính tràn trong JavaScript -

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 450px;
            height: 150px;
            background-color: orange;
            border: 3px solid red;
            margin-left: 20px;
         }
      </style>
   </head>
   <body>
      <p>Click to use overflow property and set scroll.</p>
      <button type="button" onclick="display()">Set Scroll</button>
      <div id="box">
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
      </div>
      <br>
      <br>
      <script>
         function display() {
            document.getElementById("box").style.overflow = "scroll";
         }
      </script>
   </body>
</html>