body { background-color: #ffffff; background-image: url("tree.png"); background-repeat: no-repeat; 仅显示一次 1 repeat-x横重复图像;2 repeat-y垂直重复图像; background-attachment: fixed;scroll属性指定背景图像是应该滚动还是固定的 background-position: right top;属性用于指定背景图像的位置。 } 简写 body { background: #ffffff url("tree.png") no-repeat fixed right top; }