body { background-image: url('path-to-image'); background-position: center; background-repeat: no-repeat; background-size: cover; }
section { background-color: #ffffff; position: relative; z-index: 1; }
在这个例子中,我们将 body 背景图片的 z-index 属性设为 -1,因此它会被置于 section 背景色之后。为了让 section 能够处于画布上的更高层级,我们将其 position 属性设置为 relative,并将 z-index 属性设为 1。