css background 设置背景图不铺满

2022-01-07  本文已影响0人  西风那个吹呀吹

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;
上一篇 下一篇

猜你喜欢

热点阅读