pseudo selectors: 좀 더 세부적으로 엘리먼트를 선택해 주는 것! 기본 코딩DOCTYPE html>html lang="kr"> head> title>The Nick Timestitle> style> body { height: 1000vh; margin: 50px; } div { width: 300px; height: 300px; background-color: wheat; position: relative; } style> head> body> div>div> div>div> div>div> div>div> div>div> div>div> body>html> 결과 pseudo selectors 사용하기 (first-child & last-child)DOCTYPE html>html ..