CSS

[selector] CSS - :indeterminate 가상선택자 - 불확정요소 선택 (= :indeterminate선택자 = 인디터미닛 선택자)

목차

  1. :indeterminate 예제 - 불확정 input 요소에 빨간 그림자 추가
  2. :indeterminate 정의
  3. :indeterminate 구문

 

:indeterminate 예제 - 불확정 input 요소에 빨간 그림자 추가

 

<style> 

input:indeterminate {

  box-shadow: 0 0 1px 1px red;

}

</style>


<input type="checkbox" id="hz">홈짱닷컴 Homzzang.com


<script>

// JS 통해서 checkbox를 indeterminate 상태로 만들기

var hz = document.getElementById("hz");

hz.indeterminate = true;

</script>

 

결과보기

 

:indeterminate 정의

 

불확정 상태에 있는 폼 요소 선택.

 


 

1.

아래 요소에 대해서만 적용 가능.

  • <input type="checkbox">
  • <input type="radio">
  • <progress>

  

2.

checkbox 경우, HTML으로 indeterminate 상태 될 수 없음.

indeterminate 상태는 checkbox 객체의 속성으로, JS로만 true 설정 가능.

 

radio 경우, 폼의 동일명 갖는 모든 radio 버튼이 비체크 상태일 때, indeterminate 상태가 됨.

 

4.

CSS버전: CSS3

 

5. ★

IE9 이상 주요 최신 브라우저 지원. (IE 경우 부분 지원)

단,

<input type="radio"> 요소 경우, IE는 지원 X
<progress> 요소 경우, IE10 이상 주요 최신 브라우저 지원.

 

6.

MDN :indeterminate 예제 보기

 

 

:indeterminate 구문

 

지정선택자:indeterminate {

  css 선언;

}

 



분류 제목
animation CSS - animation 속성 ★ - 애니메이션 단축속성 (= animation속성 = 애니메이션속성, …
selector CSS - :empty 가상선택자 - 자식/내용 없는 텅 빈 요소 선택 (= :empty선택자 = 엠프티 선…
selector CSS - ::first-line 가상선택자 - 요소의 첫번째라인 선택 (= ::first-line선택자 =…
css CSS - pointer-events 속성 - 마우스이벤트에 대한 반응 여부 (= pointer-events…
text CSS - overflow-wrap 속성 - 줄바꿈 위해 단어 쪼개기 (= overflow-wrap속성 = …
image CSS - enter an Image (이미지 가운데정렬/중앙정렬)
css CSS - 인스타그램(instagram) 배경색 효과
shadow CSS - text-shadow 속성 - 글자 그림자/음영 효과 주기 (= text-shadow속성 = 텍스…
background CSS - background-size 속성 ★ - 배경이미지 크기 (background-size속성 = 백…
selector CSS - ::selection 가상선택자 - 사용자가 선택한 영역 (= ::selection선택자) (가상…
selector CSS - [attribute|=value] 속성선택자 - 해당속성값 또는 뒤에 하이픈 연결된 속성값 보유 …
box CSS - padding-bottom 속성 - 안쪽여백하단 (= padding-bottom속성 = 패딩바텀속…
selector CSS - [attribute*=value] 속성선택자 - 지정 속성값 문자열 포함 모든 요소 (IE7)
text CSS - text-decoration-line 속성 - 텍스트라인위치종류 (= text-decoration…
text CSS - text-align-last 속성 - 단락마지막라인정렬 (= text-align-last속성 = …
24/35
목록
 홈  PC버전 로그인 일본어
그누앞단언어
그누뒷단언어
그외코딩언어
그누보드
제작의뢰
Q&A
커뮤니티 2
웹유틸
회원센터
홈짱닷컴 PC버전 로그인