前端开发,flex兼容写法
Posted tufei7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端开发,flex兼容写法相关的知识,希望对你有一定的参考价值。
现在写法:
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
对应旧的写法:
display: -webkit-flex;
-webkit-flex-direction: row;
-webkit-box-pack: center;
-webkit-align-items:center;
以上是关于前端开发,flex兼容写法的主要内容,如果未能解决你的问题,请参考以下文章