background url()设置背景图有两种方式
第一种:
background: url('base64或者url链接');
background-size: cover;
第二种:
background-image: url('base64或者url链接');
background-size: cover; // (或者background-size: 100% 100%;)
background-repeat: no-repeat;
若是如下,背景图不铺满
background: url('base64或者url链接');
background-size: 100% 100%;
background-repeat: no-repeat;