フロントエンドスクール-6日目
7527 ワード
今日習った内容
Flex
CSSプロパティのセットで、コンテンツを並べ替えたり、スペースを区切ったりできます.
flex-direction
整列方向の決定.container {
display: flex;
flex-direction : row;
}
.container {
display : flex;
flex-direction : row-reverse;
}
.container{
display : flex;
flex-direction : column;
}
.container{
display : flex;
flex-direction : column-reverse;
}
デフォルトではflex-itemはAxisでソートされます
justify-content
軸に対する配列の位置を制御するか、項目間の間隔を設定します.
html
<article>
<div class="left_side">
<div class="blue"></div>
<div class="green"></div>
<div class="yellow"></div>
</div>
<div class="center">
<div class="blue"></div>
<div class="yellow"></div>
</div>
<div class="right_side">
<div class="blue"></div>
<div class="green"></div>
<div class="yellow"></div>
</div>
</article>
css
div{
width:50px;height:50px
}
.blue{background:blue}
.green{background:green}
.yellow{background:yellow}
article{
background:black;
width:350px;
height:300px;
}
.right_side, .center, .left_side{
height:300px;
}
Reference
この問題について(フロントエンドスクール-6日目), 我々は、より多くの情報をここで見つけました
https://velog.io/@skdksldk2/프론트엔드스쿨-6일차
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
CSSプロパティのセットで、コンテンツを並べ替えたり、スペースを区切ったりできます.
flex-direction
整列方向の決定
.container {
display: flex;
flex-direction : row;
}
.container {
display : flex;
flex-direction : row-reverse;
}
.container{
display : flex;
flex-direction : column;
}
.container{
display : flex;
flex-direction : column-reverse;
}
デフォルトではflex-itemはAxisでソートされます
justify-content
軸に対する配列の位置を制御するか、項目間の間隔を設定します.
html
<article>
<div class="left_side">
<div class="blue"></div>
<div class="green"></div>
<div class="yellow"></div>
</div>
<div class="center">
<div class="blue"></div>
<div class="yellow"></div>
</div>
<div class="right_side">
<div class="blue"></div>
<div class="green"></div>
<div class="yellow"></div>
</div>
</article>
css
div{
width:50px;height:50px
}
.blue{background:blue}
.green{background:green}
.yellow{background:yellow}
article{
background:black;
width:350px;
height:300px;
}
.right_side, .center, .left_side{
height:300px;
}
Reference
この問題について(フロントエンドスクール-6日目), 我々は、より多くの情報をここで見つけました https://velog.io/@skdksldk2/프론트엔드스쿨-6일차テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol