body { background-image: url('你的图片路径.jpg'); background-size: cover; /* 覆盖整个视口 */ background-position: center; /* 图片居中 */ background-repeat: no-repeat; /* 不重复 */ background-attachment: fixed; /* 可选:固定背景不随滚动移动 */ }
body { background: url('你的图片路径.jpg') center/cover no-repeat fixed; }
cover
- 确保图片始终覆盖整个元素,可能会裁剪图片no-repeat
- 防止图片平铺重复center
- 使图片居中显示fixed
- 创建视差效果,背景不随页面滚动(可选)如要背景随内容滚动,可以移除 background-attachment: fixed 属性。