728x90
300x250
SMALL
align-items 는 세로로 정렬하는 속성입니다.
stretch(default값)
.container{
display:flex;
align-items: stretch;
height:100vh;
background: gainsboro;
}
end
.container {
display: flex;
align-items: end;
height: 100vh;
}
start
.container {
display: flex;
align-items: start;
height: 100vh;
background: gainsboro;
}
center
.container {
display: flex;
align-items: center;
height: 100vh;
background: gainsboro;
}
baseline
item들을 텍스트 베이스라인 기준으로 정렬
.container {
display: flex;
align-items: baseline;
height: 100vh;
background: gainsboro;
}
728x90
반응형
LIST
'Front-end > CSS' 카테고리의 다른 글
css 도넛 모양 bullet 만들기 (0) | 2021.11.04 |
---|---|
css flex 코딩 align-content (0) | 2021.11.03 |
flex 코딩 정렬 flex-direction, justify-content, flex-wrap (0) | 2021.11.01 |
css 변수 기본 사용법 (0) | 2021.10.27 |
[css] flex-flow, flex-direction, flex-wrap (0) | 2021.10.17 |
댓글