如何让img自适应div容器大小

如何让img自适应div容器大小

1、使用css中的max-width 和 height:auto

2、使用css中的background-size

.container{
    
    
     width: 300px;
     height: 200px;
     background: url(./imgs/1.jpg) no-repeat;
     background-size: 100% 100%;
}

猜你喜欢

转载自blog.csdn.net/qq_50630857/article/details/129255151
今日推荐