일부 입력 유형을 스타일링하여 분석해야하기 때문에 상당히 큰 문제가 있습니다. 나는 다음과 같은 것을 가지고 있었다.
.registration_form_right input:not([type="radio")
{
//Nah.
}
하지만 체크 박스에 스타일을 지정하고 싶지도 않습니다.
난 노력 했어:
.registration_form_right input:not([type="radio" && type="checkbox"])
.registration_form_right input:not([type="radio" && "checkbox"])
.registration_form_right input:not([type="radio") && .registration_form_right input:not(type="checkbox"])
사용하는 방법 &&
? 그리고 ||
조만간 사용해야하는데 사용법도 같을 것 같아요.
업데이트 :
난 아직도 사용하는 방법을 알고하지 않습니다 ||
및 &&
올바르게. W3 문서에서 아무것도 찾을 수 없습니다.