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

[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() 함수 이용 예제)



분류 제목
scroll CSS - scroll-margin-right 속성 -
border CSS - border-inline-width 속성 -
css CSS - rotate 속성 - 요소 회전 (= rotate속성 = 로테이트속성)
border CSS - border-block-start-width 속성 -
scroll CSS - scroll-margin-inline-end 속성 -
border CSS - border-inline-style 속성 -
scroll CSS - scroll-margin-block-start 속성 -
css CSS - break-before 속성 - 지정요소 앞에서 (페이지중단/컬럼중단/영역중단) 발생 여부 지정 …
scroll CSS - scroll-padding-left 속성 -
border CSS - border-inline-color 속성 -
border CSS - border-start-start-radius 속성 -
css CSS - place-self 속성 - 그리드셀 내 개별 아이템 (수직/수평) 정렬 (= place-self…
scroll CSS - scroll-margin-block-end 속성 -
css CSS - offset-path 속성 -
css CSS - hyphens 속성 - 긴 텍스트 단어에서 하이픈 표시 방법 지정 (= hyphens속성 = 하이…
border CSS - border-block-end-width 속성 - 블락방향 끝테두리 너비(=두께) 지정 (= bo…
scroll CSS - scroll-snap-stop 속성 -
border CSS - border-inline-start-width 속성 -
font CSS - font-kerning 속성 - 문자 모양 고려해, 문자 사이 간격 지정 (= font-kerni…
scroll CSS - scroll-snap-align 속성 -
6/27
목록
찾아주셔서 감사합니다. Since 2012