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

Vị trí CSS:cố định;

Vị trí :cố định; thuộc tính cho phép bạn định vị phần tử liên quan đến chế độ xem. Bạn có thể thử chạy đoạn mã sau để triển khai vị trí CSS:fixed;

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         div{
            position: fixed;
            bottom: 0;
            right: 0;
            width: 200px;
            border: 3px solid blue;
         }
      </style>
   </head>
   <body>
      <h2>position: fixed;</h2>
      <p>The position: fixed; property allows you to position element relative to the viewport.</p>
      <div>
         div has position: fixed;
      </div>
   </body>
</html>

Đầu ra

Vị trí CSS:cố định;