CSS弹性盒子3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS弹性盒子3相关的知识,希望对你有一定的参考价值。
@charset "UTF-8"; /* CSS Document */ p{ width:200px; border:5px solid #424089; margin:5px; padding:5px; } div{ width:100%; display:flex; /*flex-direction:column; flex-direction:row-reverse; flex-wrap:wrap; flex-wrap:wrap-reverse; flex-flow:row wrap; justify-content:space-around; justify-content:flex-start; justify-content:center; justify-content:space-between;*/ } p:nth-child(1){ flex:1; order:3 } p:nth-child(2){ align-self:flex-start; flex:3; order:2 } p:nth-child(3){ flex:1; order:1; }
以上是关于CSS弹性盒子3的主要内容,如果未能解决你的问题,请参考以下文章