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
- classList
- scope
- grid-column-start
- localStorage
- mongodb
- var
- React
- package.json
- grid-row-start
- css#cascading#display#block#inline
- react-hook-form
- gird-row-end
- collapsing-margins
- javascript
- foreach()
- prompt()
- grid-column-end
- relative
- CSS
- confirm()
- className
- createElement
- python #qqplot #qq-plot #code
- valuable
- border-style
- javascipt
- Grid
- box-shadow
- variables
- grid-template-areas
Archives
- Today
- Total
data life
Auto column, row 본문
그리드 형태를 자동으로 정의
: grid-auto-columns
: grid-auto-rows
grid-template-columns(또는 grid-template-rows)의 통제를 벗어난 위치에 있는 트랙의 크기를 지정하는 속성
grid-auto-colums
.container {
display: grid;
grid-template-columns: repeat(2, 30px);
grid-template-rows:repeat(2, 30px);
grid-auto-flow:column;
grid-auto-columns:100px;
gap: 3px;
}
1
2
3
4
5
6
7
8
9
grid-auto-rows
.container {
display: grid;
grid-template-columns: repeat(2, 30px);
grid-template-rows:repeat(2, 30px);
grid-auto-rows:100px;
gap: 3px;
}
1
2
3
4
5
6
7
8
9
자동배치
: grid-auto-flow
.container {
grid-auto-flow: row;
grid-auto-flow: column;
grid-auto-flow: dense;
grid-auto-flow: row dense;
grid-auto-flow: column dense;
}
1️⃣ row
A
B
C
D
E
F
G
H
I
2️⃣ column
A
B
C
D
E
F
G
H
I
3️⃣ dense
A
B
C
D
E
F
G
H
I
4️⃣ row dense
A
B
C
D
E
F
G
H
I
5️⃣ column dense
A
B
C
D
E
F
G
H
I
'CSS > Grid' 카테고리의 다른 글
Place Self (0) | 2022.11.18 |
---|---|
Place Content (0) | 2022.11.18 |
Place Items (0) | 2022.11.18 |
grid 각 셀의 영역 지정 (0) | 2022.11.18 |
grid-template-areas (0) | 2022.11.18 |