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
													
											
												
												- es11
- Python
- HTML
- React #Hooks
- Default parameter
- es6
- spread operation
- React Kakao map
- BOJ
- nextjs
- HTML #CSS
- Python #CodeUp
- react
- 프로그래머스
- Next
- optional chanining
- 카카오맵 api
- firebase
- Python #Baekjoon
- Template literals
- CSS
- 카카오맵
- Hooks
- css #html
- Redux
- Nullish Coalescing Operator
- JavaScript
													Archives
													
											
												
												- Today
- Total
목록HTML #CSS (1)
거북이개발자
 [카카오톡 클론코딩]CSS 기초 문법(3)
			
			
				[카카오톡 클론코딩]CSS 기초 문법(3)
				1. pseudo selectors (1) pseudo selector을 사용하면 기존의 id, class보다 좀더 정밀하게 CSS를 적용할 수 있다. 여러 코드들이 있고 대표적인것 예시 들을 보자. (1) first-child div:first-child{ background-color:tomato; } 위의 코드를 통해서 맨처음 div에만 적용이가능하다. (2) last-child div:last-child{ background-color: seagreen; } 아까와 비슷하게 마지막 div에 적용가능하게 해준다. (3) nth-child span:nth-child(even){ background-color: yellowgreen; } 이런식으로 원하는 규칙의 태그에만 적용도 가능하다. even, o..
				Web/HTML & CSS
				
				2021. 1. 5. 13:17