535 postition fixed和sticky

https://www.zhangxinxu.com/wordpress/2020/03/position-sticky-rules/


我的demo

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    * {
      margin: 0;
      padding: 0;
    }

    body {
      height: 2000px;
    }

    div:nth-child(1) {
       300px;
      height: 200px;
      background-color: pink;
      margin-bottom: 10px;
    }

    div:nth-child(2) {
      position: sticky;
      top: 20px;
       200px;
      height: 150px;
      background-color: yellowgreen;
    }
  </style>
</head>

<body>
  <div>111</div>
  <div>222</div>
</body>

</html>

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>sticky应用案例1 - 图片堆叠效果</title>
  <style>
    div {
      position: sticky;
      top: 0;
    }
  </style>
</head>

<body>
  <div>
    <img src="https://picsum.photos/id/10/480/360">
  </div>
  <div>
    <img src="https://picsum.photos/id/11/480/360">
  </div>
  <div>
    <img src="https://picsum.photos/id/12/480/360">
  </div>
  <div>
    <img src="https://picsum.photos/id/13/480/360">
  </div>
  <div>
    <img src="https://picsum.photos/id/14/480/360">
  </div>
</body>

</html>

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>sticky应用案例2 - 图片堆叠效果</title>
  <style>
    table {
      border-collapse: collapse;
    }

    th {
      position: sticky;
      top: 0px;
      height: 40px;
      background-color: hotpink;
    }

    td {
       200px;
      height: 40px;
      line-height: 40px;
      text-align: center;
    }
  </style>
</head>

<body>
  <img src="images/mm1.jpg" alt="">
  <img src="images/mm2.jpg" alt="">
  <table border="1">
    <thead>
      <tr>
        <th>Name</th>
        <th>Favorite Color</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Yellow</td>
      </tr>
      <tr>
        <td>Michelle</td>
        <td>Purple</td>
      </tr>
    </tbody>
  </table>
</body>

</html>
原文地址:https://www.cnblogs.com/jianjie/p/13776459.html