-
부정(negation) CSS 가상 클래스 :not(X)는 인수로 간단한 선택자(selector) X를 취하는 기능 표기법이다.
X는 다른 부정 선택자를 포함해서는 안 된다.
구문
:not(selector) { style properties }
예제
//index.html <p> Some text. </p> <p class="classy"> Some other text. </p> <span> One more text </span>
//index.css p:not(.classy) {color: red;} body:not(p) {color: green;}
위의 css 및 html이 주어진다면,
이 같은 출력을 얻습니다:
Some text.
Some other text.
One more text'Study > css' 카테고리의 다른 글
position:absolute 인 요소를 중앙에 위치시키는 방법 (0) 2020.06.19 CSS: Shrink-to-fit a DIV to equal the width of its content (0) 2020.06.17 input type=range (0) 2020.05.17 button 누를 때 귀엽게 움직여보기 (0) 2020.05.17 button태그 버튼모양 없애는 방법 (0) 2020.05.17