Some background on the use of

1, Zhang often landing page background image.

<body>
</body>
<style>
body {
  	background: url(http://static.ixuezhong.cn/uploadimg/admin/20190522/9e5f80182ca84201bcd6ac190743d004.png) center center / cover no-repeat fixed;
}
</style>

Written separately:

background-image: url(http://static.ixuezhong.cn/uploadimg/admin/20190522/9e5f80182ca84201bcd6ac190743d004.png);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment:fixed; /**图片不跟随浏览器滑动而移动**/

result:
Here Insert Picture Description

Guess you like

Origin blog.csdn.net/zhangjing0320/article/details/91968620