[HTML + CSS] display:flex 에서 일부 요소만 가장자리로 보내기

에릭리·2022년 6월 30일
0

Html + Css

목록 보기
4/4

html

css

.comment {
display: flex;
align-items: center;
margin-top: 10px;
}
.comment img {
width: 13px;
margin-left: auto;
margin-right: 10px;
}

이런식으로 한 div로 전체를 묶은 다음
display:flex,
align-items:center 로 세로선상 가운데 정렬을 한 뒤

한 요소 하나만 margin-left:auto 를 하면 그 요소만 맨 오른쪽으로 감.
margin-right:auto 를 하면 왼쪽.

결과물:

0개의 댓글