* 전체 태그를 의미 * {color:red;} div > strong{ div태그의 자식인 strong태그만 적용 color:greenyellow; background:rgb(84,84,83); } ul태그밑의 모든 li태그 밑의 모든 strong태그 적용대상(손자태그) ul li strong{ color:aqua; } DOCTYPE html>html lang="en">head> meta charset="UTF-8"> meta name="viewport" content="width=device-width, initial-scale=1.0"> title>8.선택자정..