특성 선택자(CSS Attribute Selectors), 결합 선택자(CSS Combinators) 1. 특성 선택자(Attribute Selectors) 속성 선택자라고도 부른다. 주어진 속성의 존재 여부나 그 값에 따라 요소를 선택하는 선택자이며, 대괄호로 묶는 것이 특성 선택자의 기본 형태이다. 구분 특성 선택자 내용 [속성] [class]{ background-color: tomato; } [attribute] 선택자: ① 특정 속성을 가진 요소를 선택한다. 즉 클래스 라는 속성이 있으면 어떤 속성값을 가지더라도 요소를 선택. a[target]{background-color:yellow;} target ① 속성이 있는 모든 요소를 선택 [속성="값"] [class="item"]{ backgrou..