비표준속성 지금까지 써왔던 class, id 속성을 쓰지 않고 나만의 방식으로 속성을 정하고 분류할 수 있다 속성이름="속성값" HTML //nonstandard 라는 속성을 임의대로 만들어보았다 Javascript non-standard properties CSS와의 연결 [속성 이름]{ }; [nonstandard]{ color: blue; } *다른 속성과는 달리 [대괄호] 안에 넣고 사용한다 자바스크립트 비표준속성 연결 querySelectorAll('[속성이름]') 을 사용하여 연결한다 const nonstandard = document.querySelectorAll('[nonstandard'); console.log(nonstandard); *nonstandard라는 상수에 querySelec..