标签: css image
所以我在一个网站上工作,我想添加一个图像作为背景,并让它占用整个网页,所以如果滚动图像仍然可用,但我迷失了我将如何做这个。
答案 0 :(得分:0)
将以下CSS添加到您的项目中:
body { background-image: url("myImage.png"); background-attachment: fixed; background-repeat: no-repeat; }