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
- classList
- var
- variables
- python #qqplot #qq-plot #code
- collapsing-margins
- React
- Grid
- gird-row-end
- grid-row-start
- javascipt
- scope
- foreach()
- javascript
- mongodb
- confirm()
- className
- relative
- valuable
- localStorage
- CSS
- react-hook-form
- border-style
- grid-column-end
- css#cascading#display#block#inline
- prompt()
- package.json
- box-shadow
- grid-column-start
- createElement
- grid-template-areas
Archives
- Today
- Total
목록CSS/Flexbox (1)
data life
CSS - flex-grow, flex-shrink
flex-grow 남는 행의 여백을 나눠서 채우는 방법으로 flex-grow 속성이 적용되지 않거나 속성 값이 0 인 경우 레이아웃 너비보다 item들의 너비 합이 더 작으면 아이템 우측 끝에 여백이 남게 된다. HTML 1 2 3 css .flex_box{ display: flex; flex-wrap: nowrap; gap: 0; padding: 10px; background-color: #e8e8e8; } .item{ min-height: 150px; flex-basis: 100px; } .item:nth-child(1){ background-color:beige; } .item:nth-child(2){ background-color: yellowgreen; } .item:nth-child(3){ b..
CSS/Flexbox
2022. 11. 16. 23:01