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

Vị trí CSS:dính;


Vị trí :dính; thuộc tính cho phép bạn định vị một phần tử dựa trên vị trí cuộn. Đặt một phần tử là dính ở trên cùng khi người dùng cuộn xuống.

Ví dụ

Bạn có thể thử chạy đoạn mã sau để triển khai vị trí CSS:stick;

<!DOCTYPE html>
<html>
   <head>
      <style>
         div.sticky {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            padding: 10px;
            background-color: orange;
            border: 1px solid blue;
         }
      </style>
   </head>
   <body>
      <p>Scroll and see the effect!</p>
      <div class = "sticky">Sticky!</div>
      <div style = "padding-bottom:2000px">
         <p>This is demo text.</p>
         <p>Scroll down to view the sticky div.</p>
      </div>
   </body>
</html>