美文网首页
Vue e-row、el-col高度一致且内容居中

Vue e-row、el-col高度一致且内容居中

作者: 橙_知足常乐 | 来源:发表于2021-02-01 11:56 被阅读0次

一、 el-col高度一致且内容居中

1.高度一致  

 type="flex"

例:

2.内容居中 

主体内容:style={ 

    position: relative;

    top:50%;

    transform:translateY(-50%);

}

例:

二、只内容居中:  align="middle"

<el-row align="middle"> </e-row>

相关文章

网友评论

      本文标题:Vue e-row、el-col高度一致且内容居中

      本文链接:https://www.haomeiwen.com/subject/glqctltx.html