data life

Grid gap 본문

CSS/Grid

Grid gap

주술회전목마 2022. 11. 18. 12:27

Grid 간격  생성

  • column-gap
  • row-gap
  • gap

>> Grid cell 사이에 간격을 만들어 줌

.container {
	row-gap: 10px;
	/* row의 간격을 10px로 */
	column-gap: 20px;
	/* column의 간격을 20px로 */
	gap : 10px 20px;
	/* row 10px, column 20px */
}
1
2
3
4
5
6
7
8
9

'CSS > Grid' 카테고리의 다른 글

Place Content  (0) 2022.11.18
Place Items  (0) 2022.11.18
grid 각 셀의 영역 지정  (0) 2022.11.18
grid-template-areas  (0) 2022.11.18
Grid의 기본과 형태  (0) 2022.11.18