欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何使背景固定,并使里面的內容滾動

錢良釵2年前9瀏覽0評論

我在NextJS中使用線性漸變創(chuàng)建了一個網格線框的背景。看起來,

<body className={"bg"}>
        <motion.div
          className="outer-circle"
          variants={variants}
          animate={cursorVariant}
        >
          <div className="cursor"></div>
        </motion.div>
        <NavBar />
        <div className="max-w-[1000px] mx-auto py-2 px-3 mt-5">{children}</div>
      </body>

& quotbg & quot類看起來像,

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #f3f3f3;
  background-image: linear-gradient(
      to right,
      rgba(223, 223, 223, 0.6) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(223, 223, 223, 0.6) 1px, transparent 1px);
  background-size: 100px 100px;
}

但是當內容變多的時候。它不滾動,因為身體的位置是固定的。如何讓固定背景下的內容單獨滾動?任何想法將不勝感激。 bg看起來像,enter image description here