CSS 파일의 종류에 따라 링크스타일을 변경
페이지 정보
작성자 관리자 (49.♡.11.159)
조회 1,666회
작성일 22-07-31 14:13(글 수정: 2023년 07월 22일)
본문
파일의 종류에 따라 링크스타일을 변경
출처: https://nanati.me/css-code-skill/
[code]
/* external links */
a[href^="http://"] {
padding-right: 13px;
background: url(external.gif) no-repeat center right;
}
/* emails */
a[href^="mailto:"] {
padding-right: 20px;
background: url(email.png) no-repeat center right;
}
/* pdfs */
a[href$=".pdf"] {
padding-right: 18px;
background: url(acrobat.png) no-repeat center right;
}
[/code]
관련링크
-
https://nanati.me/css-code-skill/
1079회 연결
- 이전글
- 다음글
댓글목록
등록된 댓글이 없습니다.