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 |
Tags
- mongodb
- grid-template-areas
- CSS
- prompt()
- grid-column-end
- relative
- localStorage
- react-hook-form
- gird-row-end
- python #qqplot #qq-plot #code
- grid-row-start
- className
- box-shadow
- confirm()
- classList
- Grid
- css#cascading#display#block#inline
- javascipt
- createElement
- React
- valuable
- variables
- grid-column-start
- foreach()
- var
- javascript
- scope
- collapsing-margins
- border-style
- package.json
Archives
- Today
- Total
목록grid-template-areas (1)
data life
grid-template-areas
영역 이름으로 그리드 정의 각 영역(Grid Area)에 이름을 붙이고, 그 이름을 이용해서 배치하는 방법 .container { display: grid; grid-template-columns: repeat(4, 200px); grid-template-rows: 100px repeat(2, 200px) 100px; grid-template-areas: "header header header header" "content content content nav" ". . . ." "footer footer footer footer"; } HTML 삽입 미리보기할 수 없는 소스 빈칸은 마침표(.) 나 “none”을 사용하면 되고, 마침표의 개수는 여러개를 써도 됨! ⭐️ 중요 ⭐️ >> 해당 아이템 요소에 ..
CSS/Grid
2022. 11. 18. 13:07