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
- react
- HTML #CSS
- React Kakao map
- optional chanining
- JavaScript
- Python
- firebase
- Python #CodeUp
- Redux
- Hooks
- 카카오맵
- Python #Baekjoon
- es6
- css #html
- nextjs
- 카카오맵 api
- React #Hooks
- Next
- CSS
- Template literals
- Default parameter
- HTML
- 프로그래머스
- es11
- spread operation
- Nullish Coalescing Operator
- BOJ
Archives
- Today
- Total
목록HTML #CSS (1)
거북이개발자

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