カテゴリー:
Flexible Box Layout Module
閲覧数:529 配信日:2017-01-10 22:24
下記CSSは同義
初期値を明示的に記述するかどうかの違い
・初期値省略
.wrapper{
display:flex;
justify-content: space-between;
}
・flex-direction初期値記述display:flex;
justify-content: space-between;
}
.wrapper{
display:flex;
flex-direction:row;
justify-content: space-between;
}
display:flex;
flex-direction:row;
justify-content: space-between;
}