Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- css밑줄
- Kubernetes
- AWS
- 깃허브클론
- nextjs에러
- 자바스크립트공부
- 쿠버넨티스오류
- github
- 자스공부
- css
- 에러왕
- AWS에러
- chatbot
- docker
- cssfontsize
- 도커버전
- 도커
- 연결성 검사 실패 오류
- chatbotwithdatabase
- 자바스크립트
- 챗봇데이터베이스
- css선없애기
- 챗봇만들기
- AWS인스턴스에러
- 링크선없애기
- css취소선
- JavaScript
- 자바스크립트오버라이딩
- nextjserror
- dockererror
Archives
- Today
- Total
에러왕
CSS) text-decoration (링크 밑줄없애기 와 줄높이) 본문
none은 a태그의 밑줄없애는데 사용.
underline은 줄 긋는거
line-through는 취소선 긋는거
.none {
text-decoration: none;
}
.underline {
text-decoration: underline;
}
.line-through {
text-decoration: line-through;
}
2. 줄높이는 이렇게 변경한다.
p {
line-height: 1.5;
}