背景图调试问题

背景图调试问题

  1. 适配大屏幕背景图:
    background: url('../static/images/search-bg.png') no-repeat center;
       
    background-size: cover;
    

    or

    background: url('../static/images/search-bg.png') no-repeat center;
       
    background-size: 100% 100%;
    
  2. 设置背景图大小以及位置:
    background-size: x; 
       
    background-position:x y;  
    

相关资料:

背景图的定位技巧

我发现了7个关于 CSS backgroundImage 好用的技巧