【next-blog】背景图片设置

1.找到该路径

1
themes\next\source\css\ _custom\custom.styl

2.添加如下代码:

1
2
3
4
5
6
body {    
background:url(https://source.unsplash.com/random/1600x900);
background-repeat: no-repeat;
background-attachment:fixed;
background-position:50% 50%;
}

【注意:保证上面url链接可访问】


-------------本文结束感谢您的阅读😜-------------
0%