테스트 사이트 - 개발 중인 베타 버전입니다

그리드 가운데 맞춤 채택완료

첩살이 4년 전 조회 972
.example-grid {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
}

그리드 항목은 왼쪽으로 정렬이 되요 ㅠㅠ

 

댓글을 작성하려면 로그인이 필요합니다.

답변 1개

채택된 답변
+20 포인트

section {

  width: 400px;

  height: 400px;

  border:1px solid #ccc;

  display: grid;

  justify-content: center;

  align-content: center;

  gap: 4px;

  grid-auto-flow: column;

}

div{

  background:#777;

  color:#fff;

  padding: 30px;

}

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인