elementui 上传图片自适应大小


1. 修改封面图窗口大小样式。

.el-upload { //这是上传图片父容器。
   border: 1px dashed #d9d9d9;
   border-radius: 6px;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   display: flex;
   justify-content: space-around;
   align-items: center;
}
 
2. 修改图片大小样式。
.avatar { // 这是上传图片子容器。
   width: auto;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   display: block;
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM