Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

vue中多图展示,随着图片数量增多高度自适应,css设置无效

已通过设置height: auto !important;或定义最小高min-height: 80px;图片展示还是无法自适应高度,会遮挡下面div的文字
image.png

父组件:

<template>
    <div :v-if="filesShow" class="describeFont proofImg">
        <imgViewer :files="files"/>
    </div>
</template>
<style scoped>
.proofImg{
  width: 370px;
 height: 150px;
 /*height: auto;*/
 display: inline-block;
 flex-wrap: wrap;
}
.describeFont{
    margin-left: 2.2px;
}
</style>

子组件:imgViewer.vue

 <template>
    <div> 
        <el-row :gutter="6" class="spacing">
            <el-col :span="10" :push="2">
                <div class="textStyle">显示已上传图片:</div>
            </el-col> 
        </el-row> 
        <el-row :gutter="6" class="spacing      manyImg">
            <el-col :span="20" :push="2">
                <div @click.stop class="manyImgShow">
                    <el-image v-for="(item,index) in files"
                     :key="index"
                     :src="fileImgFun(item)"
                     alt=""
                     @click="clickHandler"
                     :preview-src-list="fileImges"
                     class="showElImg"
                     >
                    </el-image> 
                </div> 
            </el-col> 
        </el-row> 
    </div>
</template>
<style scoped>
.manyImgShow {
    height: 80px; 
    height: auto !important;
    }
.showElImg{
  /*display: inline-block;*/
 width: 50px;
 height: 50px;
 padding-right: 10px;
}
</style>
求教如何使整个外部的height自适应,不遮挡底部文字?

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

http://jsrun.net/cVIKp/edit

根据 demo 来看,你所提供的代码至少在布局上不会出现你描述的问题

那么分析下来有两个可能性

  1. 你提供的代码不对
  2. 我的 demo 缺少内容。

那你猜,为什么我的不会挡住文字呢?建议你还是提供一个复现页面吧。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.5k users

...