에러왕

CSS) text-decoration (링크 밑줄없애기 와 줄높이) 본문

카테고리 없음

CSS) text-decoration (링크 밑줄없애기 와 줄높이)

에러뿌셔 2024. 3. 15. 13:27

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;
}