美文网首页
css background 设置背景图不铺满

css background 设置背景图不铺满

作者: 西风那个吹呀吹 | 来源:发表于2022-01-07 21:36 被阅读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;
    

    相关文章

      网友评论

          本文标题:css background 设置背景图不铺满

          本文链接:https://www.haomeiwen.com/subject/yhdscrtx.html