developer.mozilla.org/ko/docs/Web/CSS/Attribute_selectors
a {
color: blue;
}
/* Internal links, beginning with "#" */
a[href^="#"] {
background-color: gold;
}
/* Links with "example" anywhere in the URL */
a[href*="example"] {
background-color: silver;
}
/* Links with "insensitive" anywhere in the URL,
regardless of capitalization */
a[href*="insensitive" i] {
color: cyan;
}
/* Links with "cAsE" anywhere in the URL,
with matching capitalization */
a[href*="cAsE" s] {
color: pink;
}
/* Links that end in ".org" */
a[href$=".org"] {
color: red;
}
'HTML 태그 & CSS 속성' 카테고리의 다른 글
[meta 메타태그] 모바일 기기에서 화면이 확대/축소되지 않도록 설정하기 (0) | 2021.01.28 |
---|---|
nth-child( ) (0) | 2020.12.15 |
:root selector and var( ) (0) | 2020.10.08 |
명시도(Css cascading 결정하는 요소) (0) | 2020.10.08 |
퍼블리셔가 알아야 할 필수 사이트 11선 (0) | 2020.08.01 |
댓글