• 회원가입
  • 로그인
  • 구글아이디로 로그인

[selector] CSS - :only-of-type 가상선택자 - 타입유일 자식요소 (= 유일타입 자식요소) [유일선택자|타입선택자, IE9]

목차
  1. :only-of-type 예제 - 유일 타입 자식요소
  2. :only-of-type 정의
  3. :only-of-type 예제 - 유일 타입 자식요소 경우, 순번 제외

 

:only-of-type 예제 - 유일 타입 자식요소 

 

<style> 

p:only-of-type {background: yellow;}

</style>


<div>

  <p>홈짱닷컴</p>  

</div>


<div>

  <p>Homzzang.com</p>

  <p>Since 2012</p>  

</div>


<div>

  <p>홈페이지 제작관리</p>

  <span>코딩교육 서버관리</span> 

</div>

 

결과보기

 

:only-of-type 정의

 

그 부모의 자식요소 중, 지정타입요소가 유일한 경우 선택.
즉, 독자이거나 형제요소 있더라도 타입이 유일할 때 적용.

 


 

1.

형제요소 중 동일 타입 존재 시엔 적용 안 됨.

2.

IE9 이상 주요 최신 브라우저 지원.

 

 

:only-of-type 예제 - 유일 타입 자식요소 경우, 순번 제외

https://homzzang.com/b/css-345 (CSS counter() 함수 이용 예제)



분류 제목
image CSS - image-rendering 속성 - 크기 조정 가능 이미지의 렌더링 방식 지정 (= image-…
css CSS - inset 속성 -
css CSS - inset-block 속성 -
css CSS - inset-block-end 속성 -
css CSS - inset-block-start 속성 -
css CSS - inset-inline 속성 -
css CSS - inset-inline-end 속성 -
css CSS - inset-inline-start 속성 -
css CSS - isolation 속성 - 요소가 새 스택(stack: 쌓음) 콘텐츠를 생성해야 하는지 여부 지정…
grid CSS - justify-items 속성(C) - 인라인축 부분단위별 그리드 아이템 일괄 정렬 (= just…
grid CSS - justify-self 속성 -
box CSS - margin-block 속성 -
box CSS - margin-block-end 속성 -
box CSS - margin-block-start 속성 -
box CSS - margin-inline 속성 - 인라인방향 양쪽 끝 바깥 여백 주기 (= margin-inlin…
box CSS - margin-inline-end 속성 -
box CSS - margin-inline-start 속성 -
css CSS - mask-image 속성 -
css CSS - mask-mode 속성 -
css CSS - mask-origin 속성 -
21/25
목록
찾아주셔서 감사합니다. Since 2012