8 lines
225 B
Stylus
8 lines
225 B
Stylus
body {
|
||
background:url(/images/background.png);
|
||
background-repeat: no-repeat;
|
||
background-attachment: fixed; //是否滚动,fixed固定
|
||
background-size: cover; //填充
|
||
background-position: center;
|
||
}
|