# CSS 背景图片全屏显示
<style>
html {
background: url(./static/login/xia.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9