element-ui 栅格布局 一行五等分
Posted 笑话如人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element-ui 栅格布局 一行五等分相关的知识,希望对你有一定的参考价值。
24/5 = 4.8
<el-row :gutter="20" type="flex" class="wan-row-justify-box"> <el-col :xs=\'24\' :md="6" :lg="{span: \'4-8\'}" :sm="12" v-for="(item,index) in tvList" :key="index"> <div class="template_con"> <div class="template_info"> <div class="name">{{item.title}}</div> <div class="label">价格:<div><span>¥{{item.price}}</span> 元</div></div> <div class="btnList"> <div class="planBtn" @click="delTemplate(item.id)">删除</div> </div> </div> </div> </el-col> </el-row>
.wan-row-justify-box {
flex-direction: row;
flex-wrap: wrap;
}
@media screen and (min-width: 1200px) { .el-col-md-6 { width: 20%; } }
以上是关于element-ui 栅格布局 一行五等分的主要内容,如果未能解决你的问题,请参考以下文章