HTML/CSS 링크(a href, Link) Underline, Decoration, Color 변경
// App.js
<Link className='link' to = "/"> 홈 </Link>
1. 밑줄 제거
// App.css
.link {
text-decoration-line: none;
}
※ text-decoration-line 속성입니다.
- none : 선 없음
- underline : 밑줄
- overline : 윗줄
- line-through : 취소선
- 'text-decoration: none;'으로 해도 됩니다.
2. 밑줄 Color 변경
// App.css
.link {
text-decoration-color: red;
}
3. 밑줄 Dot(점선)로 변경
// App.css
.link {
text-decoration-style : dotted;
}
※ text-decoration-style 속성입니다.
- solid : default
- double : 2줄
- dotted : 점선
- dashed : dash
- wavy : Wave
4. 밑줄 굵기 변경
// App.css
.link {
text-decoration-thickness: 5px;
}
'Programming 개발은 구글로 > Web[프론트엔드&백엔드]' 카테고리의 다른 글
[Web] 하이브리드 앱과 Cordova (0) | 2022.07.18 |
---|---|
[Web] Route 사용법(react-router-dom) 및 페이지 설정 (0) | 2022.07.12 |
[Web] Node.js - HTTP 서버 및 클라이언트 예제로 확인하기 (0) | 2022.07.08 |
[Web] React 프로젝트 생성 시 보안 오류인 PSSecurityException, UnauthorizedAccess 에러 발생 (0) | 2022.07.06 |
[Web] Node.js - Blocking & Non-Blocking code (0) | 2022.07.05 |
댓글