CSS Links Text Decoration

CSS Links  Text Decoration

 

이 text-decoration속성은 주로 링크에서 밑줄을 제거하는 데 사용됩니다.

 

 

a:link {

    text-decoration: none;

}

 

a:visited {

    text-decoration: none;

}

 

a:hover {

    text-decoration: underline;

}

 

a:active {

    text-decoration: underline;

}

 

587ef6e2978cbd8808c9c77a5b2713e2_1487956574_625.png
 

 

<!DOCTYPE html>

<html>

<head>

<style>

a:link {

    text-decoration: none;

}

 

a:visited {

    text-decoration: none;

}

 

a:hover {

    text-decoration: underline;

}

 

a:active {

    text-decoration: underline;

}

</style>

</head>

<body>

 

<p><b><a href="default.asp" target="_blank">This is a link</a></b></p>

<p><b>Note:</b> a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective.</p>

<p><b>Note:</b> a:active MUST come after a:hover in the CSS definition in order to be effective.</p>

 

</body>

</html>


|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리셔팁

퍼블리싱과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
CSS 9년 전 조회 1,948
CSS 9년 전 조회 2,389
CSS 9년 전 조회 2,433
CSS 9년 전 조회 2,418
CSS 9년 전 조회 2,243
CSS 9년 전 조회 1,976
CSS 9년 전 조회 2,457
CSS 9년 전 조회 1,790
CSS 9년 전 조회 1,881
CSS 9년 전 조회 1,987
CSS 9년 전 조회 2,609
CSS 9년 전 조회 2,671
CSS 9년 전 조회 2,046
CSS 9년 전 조회 2,524
CSS 9년 전 조회 2,075
CSS 9년 전 조회 2,110
CSS 9년 전 조회 2,022
CSS 9년 전 조회 1,730
CSS 9년 전 조회 1,779
CSS 9년 전 조회 3,310
CSS 9년 전 조회 2,312
CSS 9년 전 조회 1,920
CSS 9년 전 조회 2,349
CSS 9년 전 조회 2,388
CSS 9년 전 조회 2,612
CSS 9년 전 조회 1,868
CSS 9년 전 조회 2,730
CSS 9년 전 조회 2,034
CSS 9년 전 조회 2,122
CSS 9년 전 조회 2,221