일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바스크립트
- 코어 자바스크립트
- js
- SQL 고득점 Kit
- 리액트
- python
- 코드스테이츠
- programmers
- til
- 2주 프로젝트
- 프로그래머스
- 제로초
- 렛츠기릿 자바스크립트
- 회고
- LeetCode
- 손에 익히며 배우는 네트워크 첫걸음
- Async
- 타입스크립트 올인원
- 정재남
- 토익
- 리덕스
- 파이썬
- javascript
- 4주 프로젝트
- 알고리즘
- 백준
- 타입스크립트
- codestates
- 리트코드
- 타임어택
Archives
- Today
- Total
목록nth-last-child (1)
Jerry
[css 10초 컷] :last-child Selector VS :nth-last-child() Selector
[css 10초 컷] :last-child Selector와 :nth-last-child()입니다. :last-child 선택자는 상위(부모) 요소의 마지막 하위(자식) 요소를 가리킵니다. :nth-last-child(n) 선택자는 타입이나, 상위(부모) 요소와 관계없이, n번째 하위(자식)의 모든 요소를 가리킵니다. p:last-child은 p:nth-last-child(1)와 같습니다. 참고 https://css-tricks.com/almanac/selectors/l/last-child/#:~:text=The%20%3Alast%2Dchild%20selector%20allows,with%20parent%20and%20sibling%20content. https://www.w3schools.com/css..
Front/HTML & CSS
2022. 7. 5. 22:56