mpvue 微信小程序 Image 图片实现宽度100%,高度自适应

版权声明:转载请评论留言 https://blog.csdn.net/solocao/article/details/86471969

主要是设置mode="widthFix"width: 100%;

<!-- 新手教程 -->
<template>
  <div class="center-tutorial">
    <img class="img" src="https://123.oss-cn-hangzhou.aliyuncs.com/666.jpeg" mode="widthFix">
  </div>
</template>
<style lang="less" scoped>
  .center-tutorial {
    .img {
      width: 100%;
    }
  }
</style>

猜你喜欢

转载自blog.csdn.net/solocao/article/details/86471969
今日推荐