인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

kminrzymski08220's profile image
kminrzymski08220

asked

HTML+CSS+JS Portfolio Practical Publishing (Season 1)

Practical Publishing 01: Using the `checked` Pseudo-class with Extended Selectors (Making an Animated Hamburger Button)

궁금합니다

Written on

·

208

·

Edited

1

선생님 input 을 왜 display none을 해서 없애는 건가요??

 

그리고 label span 안에 width: 100% height 2px background-color: #000 을 준 상태에서
label span:nth-child(1){}

label span:nth-child(2){}

label span:nth-child(3){}

각각 자식 span 안에 퍼센트만 쓰면 높이 2px 길이가 100% 인 검은색 이 들어가는건가요 ??

HTML/CSSjquery

Answer 1

0

codingworks님의 프로필 이미지
codingworks
Instructor

input과 짝꿍이된 label이 있기 때문에 input의 체크 기능을 label이 대신합니다. 그래서 html 내에서는 존재하되 브라우저에서는 보이지 않게 하는 겁니다.

kminrzymski08220's profile image
kminrzymski08220

asked

Ask a question