Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- grid-row-start
- foreach()
- grid-column-start
- border-style
- mongodb
- grid-column-end
- classList
- var
- react-hook-form
- Grid
- React
- gird-row-end
- python #qqplot #qq-plot #code
- box-shadow
- javascipt
- grid-template-areas
- variables
- CSS
- localStorage
- css#cascading#display#block#inline
- confirm()
- javascript
- className
- relative
- scope
- createElement
- valuable
- collapsing-margins
- prompt()
- package.json
Archives
- Today
- Total
data life
Grid gap 본문
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 |