CSS Tutorial For Beginners #16-20 > CSS

CSS

CSS 관련 공부 및 자료 공유 소모임 게시판 입니다.

CSS Tutorial For Beginners #16-20 정보

CSS Tutorial For Beginners #16-20

본문

Child Selectors

 

자식 선택자 >

자손 선택자 space

 

 

Adjacent Selectors

 

인접 선택자 +  https://aboooks.tistory.com/270

 

id all-articles 안의 h2태그 다음에 나오는 p 태그만 그린으로

#all-articles h2 + p{

  color: green;

}

 

 

Attribute Selectors

span[class] class가 있는 span태그만

div[id]  id가 있는 div태그만

a[title]  title이 있는 a태그만

a[title="Search engine"]   title이 Search engine인 a 태그

a[href$="pdf"] pdf로 끝나는 a 태그

a[href^="http"] http로 시작하는 a 태그

 

 

Pseudo Selectors

 

selector:[pseudo]

 

a:hover

 

 

Hover, Active & Visited Effects

위에 이어서

selector:keyword {declaration}

 

keyword: hover, active, visited 

 

추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로