图片居中自适应

656 阅读1分钟

要求:上传后的图片居中显示,多余的截取掉

试过使用包裹img 均不生效

实现方式:将图片设置成背景图

    width: 300px;
    height: 300px;
    background-image: url('');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;