본문 바로가기
실습기록

7월 24일 project - 반복문 가운데 정렬 CSS

by project100 2023. 7. 25.
.col {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 30px;
}

.card {
    width: 288px;
    height: 290px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    flex-direction: column;
}