background: url(/images/background.jpeg) 0% 0% / 100% 100% no-repeat;
0% 0% / 100% 100% 含义
https://www.runoob.com/cssref/css3-pr-background.html
0% 0%是background-position,left 0 top 0
100% 100%是background-size,width 100% height 100%
根据你所写的问题分析,url是指背景图片的地址 然后百分之多少是指你背景展示的百分比大小,最后not-repeat是指背景图片不重复。