WEB/CSS
[CSS] text에 밑줄, 취소선, 윗줄 추가하기
이아이모
2017. 11. 30. 10:11
text-decoration속성을 통해서 밑줄, 취소선, 윗줄 주기
text-decoration속성은 CSS를 사용해 텍스트에 밑줄, 윗줄 또는 취소선(가운데선)등을 사용하는 방법입니다.
text-decoration 속성을 사용할 경우 이와 같은 스타일 구현이 가능합니다.
이 속성은 다음과 같은 값을 지정할 수 있습니다.
text-decoration : underline(밑줄)
text-decoration : overline(윗줄)
text-decoration : line-through(취소선)
text-decoration : none(숨기기)
a링크를 걸때 밑줄이 있을 경우 밑줄을 제거하려면
a{
text-decoration: none;
}
을 하게 되면 밑줄이 없어진다.