Web/CSS
[days04] 속성 선택자(selector) 사용하기 태그[속성명(기호)속성값]
다연
2020. 12. 8. 13:55
반응형
[속성명]
[속성명=속성값]
속성명이 속성값과 일치하는 경우
a[title='flower']{
text-decoration: none;
color: red;
}
[속성명^=속성값]
where title like 'kbs%'
특정 문자열로 시작하는
a[title^='kbs']{
text-decoration: none;
color: red;
}
[속성명$=속성값]
where title like '%kbs'
특정 문자열로 끝나는
a[title$='kbs']{
text-decoration: none;
color: red;
}
[속성명*=속성값]
where title like '%flower%'
특정 단어을 포함하고 있는
a[title*='flower']{
text-decoration: none;
color: red;
}
[속성명~=속성값]
특정단어 (문자열 속이 아니라 단어)
a[title~='flower']{
text-decoration: none;
color: red;
}
[속성명|=속성값]
몰라두돼
반응형