HTML 소스보기 HTML CSS JavaScript 닫기 CSS * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'NexonLv1Gothic'; } a { text-decoration: none; color: #fff; transition: all 0.2s; } li { list-style: none; } img { width: 100%; vertical-align: top; } body { width: 100%; height: 100vh; background-image: url(../img/img_slide01.jpg); background-size: cover; background-position: center center; over..
화살표가 가르키는 태그만을 선택할 수 있는 CSS 선택자를 위에 입력해야합니다. Level 1 :first-child https://developer.mozilla.org/ko/docs/Web/CSS/:first-child :first-child - CSS: Cascading Style Sheets | MDN CSS :first-child 의사 클래스는 형제 요소 중 제일 첫 요소를 나타냅니다. developer.mozilla.org Level 2 :not() https://developer.mozilla.org/ko/docs/Web/CSS/:not :not() - CSS: Cascading Style Sheets | MDN 부정(negation) CSS 가상 클래스 :not(X)는 인수로 간단한 선택자..