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 |
Tags
- 개발공부
- html
- .current
- 전역상태
- 그래머인유즈
- 개발일기
- 알고리즘
- 영어공부
- 실행컨텍스트란
- 실행컨텍스트자바스크립트
- 노마드코더
- Mini Node Server
- 고차함수
- 실행컨텍스트 실행과정
- 실행컨텍스트 면접
- Block
- 객체
- CLI
- npm 에러
- 실행컨텍스트콜스택
- state hook
- 실행컨텍스트스택
- useRef역할
- CORS
- .env
- 로컬상태
- styled-component
- css
- 실행컨텍스트 동작과정
- 영어
Archives
- Today
- Total
목록inline (1)
오늘도 삽질중
CSS (Blocks and Inlines)
block Inline block에서 inline으로, inline에서 block으로 user agent stylesheet Block : 옆에 다른요소들이 올 수 없다.(대부분의 box는 block 이다) - box이다. (box는 margin, padding, border 을 갖는다.) - 넓이, 높이 가진다. 대표적인 예) div, header, p Inline: 옆에 다른 요소들이 올 수 있다.(In the same line) - box 아니다 -넓이(width)와 높이(height)를 가질 수 없다. => 목차 block에서 inline으로, inline에서 block으로 대표적인 예) span, a, image, code ... 예시 //block //inline hello hello hell..
HTML,CSS
2021. 8. 24. 23:11