gtxyzz

CSS 背景附着

gtxyzz web技术 2022-07-05 753浏览 0

CSS 背景附着

CSS background-attachment

background-attachment 属性指定背景图像是应该滚动还是固定的(不会随页面的其余部分一起滚动):

实例

指定应该固定背景图像,不会随着其他文字一起滚动:

body {
  background-image: url("图片地址");
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: fixed;
}

实例

指定背景图像应随页面的其余部分一起滚动:

body {
  background-image: url("图片地址");
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: scroll;
}


转载请注明:IT运维空间 » web技术 » CSS 背景附着

继续浏览有关 css 的文章
发表评论